website/templates/blog.html
Magic_RB 9b2cf353fa
Increase TOC depth to 4
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2022-01-08 01:16:46 +01:00

17 lines
462 B
HTML

<!doctype html>
<html lang="en">
{{:include "head.html"}}
<body>
{{:include "navbar.html"}}
<div id="organizer">
<div class="sidebar">{{org-html-toc 4 info}}</div>
<div id="content" class="textual">
{{: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>