website/templates/index.html
2021-03-07 14:36:26 +01:00

16 lines
418 B
HTML

<!doctype html>
<html lang="en">
{{:include "head.html"}}
<body>
<div id="organizer">
<div class="sidebar">{{org-html-toc 2 info}}</div>
<div id="content">
{{:if with-title}}<h1>{{title}}</h1>{{:endif}}
{{:if date}}<div class="post-meta">Published on {{format-time-string "%b %d, %Y" date}}</div>{{:endif}}
{{contents}}
</div>
<div class="sidebar"></div>
</div>
</body>
</html>