This repository was archived by the owner on Aug 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathtutorial.html
More file actions
130 lines (122 loc) · 4.98 KB
/
Copy pathtutorial.html
File metadata and controls
130 lines (122 loc) · 4.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<div class="row">
<div class="tutorial-content">
<h2>
$title$
</h2>
<p>
<strong>First published:</strong> $published$
$if(updated)$
(<strong>Last updated:</strong> $updated$)
$endif$
<br/>
by <strong>$author-name$</strong>
<br/>
$if(tags)$
<strong>Tags:</strong> $tags$
$endif$
</p>
<div class="social-container">
<div>
<div class="social-links-inline">
Follow this author:
</div>
<div class="tutorials_social_icons news social-links-inline">
<div class="social-links scroll-always desktop">
$if(twitter-profile)$
<div class="hoverable twitter-share">
<a href="https://twitter.com/intent/follow?screen_name=$twitter-profile$">
<img data-no-retina="" class="img-responsive image-normal" alt="twitter-icon.png" src="$host$/assets/img/twitter-icon.png">
<img data-no-retina="" class="img-responsive image-hover" alt="twitter-icon-hover.png" src="$host$/assets/img/twitter-icon-hover.png">
</a>
</div>
$endif$
$if(github-profile)$
<div class="hoverable github-share">
<a target="_blank" href="https://github.com/$github-profile$">
<img data-no-retina="" class="img-responsive image-normal" alt="github-icon.png" src="$host$/assets/img/github-icon.png">
<img data-no-retina="" class="img-responsive image-hover" alt="github-icon-hover.png" src="$host$/assets/img/github-icon-hover.png">
</a>
</div>
$endif$
</div>
</div>
</div>
$if(lts)$
<p>
Tested with:
<ul>
$if(lts)$
<li>
Resolver:
<a href="https://www.stackage.org/lts-$lts$">
LTS Haskell $lts$ (ghc-$ghc$)
</a>
</li>
$endif$
$if(nightly)$
<li>
Resolver:
<a href="http://www.stackage.org/nightly-$nightly$">
Stackage Nightly $nightly$ (ghc-$ghc$)
</a>
</li>
$endif$
$if(libs)$
<li>
Libraries:
$for(libs)$
<a href="https://hackage.haskell.org/package/$lib$">
$lib$
</a>
$endfor$
</li>
$endif$
</ul>
</p>
$endif$
<div>
<div class="social-links-inline">
Share this article:
</div>
<div class="tutorials_social_icons news social-links-inline">
<div class="social-links scroll-always desktop">
<div class="hoverable mail-share">
<a href="mailto:?subject=$title$&body=$title$%0D%0A$host$$url$">
<img data-no-retina="" class="img-responsive image-normal" alt="mail-icon.png" src="$host$/assets/img/mail-icon.png">
<img data-no-retina="" class="img-responsive image-hover" alt="mail-icon-hover.png" src="$host$/assets/img/mail-icon-hover.png">
</a>
</div>
<div class="hoverable twitter-share">
<a href="https://twitter.com/intent/tweet?text=$title$&url=$protocol$$host$$url$" target="_blank">
<img data-no-retina="" class="img-responsive image-normal" alt="twitter-icon.png" src="$host$/assets/img/twitter-icon.png">
<img data-no-retina="" class="img-responsive image-hover" alt="twitter-icon-hover.png" src="$host$/assets/img/twitter-icon-hover.png">
</a>
</div>
<div class="hoverable facebook-share">
<a href="$protocol$$host$$url$">
<img data-no-retina="" class="img-responsive image-normal" alt="facebook-icon.png" src="$host$/assets/img/facebook-icon.png">
<img data-no-retina="" class="img-responsive image-hover" alt="facebook-icon-hover.png" src="$host$/assets/img/facebook-icon-hover.png">
</a>
</div>
<div class="hoverable likedin-share">
<a href="http://www.linkedin.com/shareArticle?mini=false&url=$protocol$$host$$url$&title=$title$&source=$protocol$$host$" target="_blank">
<img data-no-retina="" class="img-responsive image-normal" alt="linkedin.png" src="$host$/assets/img/linkedin-icon.png">
<img data-no-retina="" class="img-responsive image-hover" alt="linkedin-hover.png" src="$host$/assets/img/linkedin-icon-hover.png">
</a>
</div>
</div>
</div>
</div>
</div>
<hr>
$body$
<hr>
<p>
Thanks for reading this tutorial! If you have any feedback, please feel free to drop us a line
on <a href="https://twitter.com/stackbuilders">Twitter</a> or
<a href="https://www.facebook.com/StackBuildersEcuador/">Facebook</a>.
You could also open issues and pull requests on
<a href="https://github.com/stackbuilders/tutorials">GitHub</a>.
</p>
</div>
</div>