hakyll/tests/data/template.html
2014-10-27 12:20:31 +01:00

30 lines
382 B
HTML

<div>
I'm so rich I have $$3.
$rev("foo")$
$rev(rev("foo"))$
$if(body)$
I have body
$else$
or no
$endif$
$if(unbound)$
should not be printed
$endif$
$if(body)$
should be printed
$endif$
<ul>
$for(authors)$
<li>$name$</li>
$endfor$
</ul>
$for(authors)$$name$$sep$, $endfor$
$body$
</div>