about summary refs log tree commit diff
path: root/templates/post.html
blob: aa256c7ed50d1eb81249de01bc5149f787e2f55b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{%wrap-include base.html}
<nav id="navtree" class="sized">
	{%pattern path}
	<a href="{path_link}" alt="{path_name}">&larr; {path_name}</a>
	{%end}
</nav>
<main id="main-content" class="writing sized">
	{%if-set post-title}<h1 id="post-title">{post-title}</h1>{%else}<h1 id="post-title">{title}</h1>{%end}
	{%pattern published}
	<section id="published">published: <time datetime="{published_machine}">{published_human}</time></section>
	{%end}
	{main}
</main>
{%end}