mirror of
https://git.sr.ht/~magic_rb/website
synced 2024-11-23 16:47:35 +01:00
16 lines
418 B
HTML
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>
|