hakyll/tests/data/template.html
2013-05-06 23:32:25 +02:00

27 lines
342 B
HTML

<div>
I'm so rich I have $$3.
$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>