hakyll/tests/data/template.html

31 lines
382 B
HTML
Raw Normal View History

2012-11-19 13:59:55 +00:00
<div>
I'm so rich I have $$3.
2013-05-06 21:32:25 +00:00
2014-10-27 11:20:31 +00:00
$rev("foo")$
$rev(rev("foo"))$
2013-08-10 14:18:59 +00:00
$if(body)$
I have body
$else$
or no
$endif$
2013-05-06 21:32:25 +00:00
$if(unbound)$
should not be printed
$endif$
2013-05-06 21:32:25 +00:00
$if(body)$
should be printed
$endif$
2013-05-06 21:32:25 +00:00
<ul>
$for(authors)$
<li>$name$</li>
$endfor$
</ul>
$for(authors)$$name$$sep$, $endfor$
2012-11-19 13:59:55 +00:00
$body$
</div>