blog/templates/post.html

47 lines
554 B
HTML

$head()$
<header>
$if(title)$
<h1>$title$</h1>
$endif$
<div class=meta>
$if(date)$
<h2 class=date>$date$</h2>
$endif$
$if(tags)$
<nav class=tags>
tags:
<ul>
$for(tags)$
<li><a href=/tag-$it$.html>$it$</a>
$endfor$
</ul>
</nav>
$endif$
</div>
<hr>
</header>
$if(show-toc)$
<nav id=toc>
<h2>Contents</h2>
$table-of-contents$
</nav>
$endif$
<main>
$body$
$if(blah)$
<dl>
$for(blah)$
<dt>$blah.a$
<dd>$blah.b$
$endfor$
</dl>
$endif$
</main>
$foot()$