hakyll/web/templates/tutorials.html

46 lines
1 KiB
HTML
Raw Normal View History

2011-06-13 16:26:04 +00:00
<h1>Tutorials about Hakyll</h1>
<h2>Tutorial series</h2>
2016-03-30 19:32:12 +00:00
<ul>
$for(tutorials)$
$if(isSeries)$
<li>
<a href="$url$">$title$</a>
</li>
$endif$
$endfor$
</ul>
<h2>Other articles</h2>
<p>In no particular order:</p>
2016-03-30 19:32:12 +00:00
<ul>
$for(tutorials)$
$if(isArticle)$
<li>
<a href="$url$">$title$</a> by <em>$author$</em>
</li>
$endif$
$endfor$
</ul>
<h2>External articles</h2>
<p>In no particular order:</p>
<ul>
$for(tutorials)$
$if(isExternal)$
<li>
<a href="$url$">$title$</a> by <em>$author$</em>
</li>
$endif$
$endfor$
</ul>
2010-03-31 12:31:46 +00:00
<p>
All these tutorials assume you are using the latest stable version of
Hakyll. If this is not the case, you might want to update using:
</p>
<pre><code>$$ ghc-pkg unregister hakyll
$$ cabal update
$$ cabal install hakyll</code></pre>
2016-03-30 19:32:12 +00:00
<p>
Or using stack:
</p>
<pre><code>$$ stack install hakyll</code></pre>