natter/default_environment/templates/html/blog_post_page.dust

20 lines
410 B
Plaintext
Raw Normal View History

2023-12-20 00:23:56 +00:00
<article class="blog_post">
2023-12-20 01:33:21 +00:00
{?.title}<h1 class="blog_post_title"><span>{.title}</span></h1>{/.title}
2023-12-20 00:23:56 +00:00
{! TODO: date? !}
2023-10-24 03:36:47 +00:00
{! TODO: Table of contents? !}
<div class="blog_post_body">
2023-10-27 22:15:53 +00:00
{#.children}
{>document_element/}
{/.children}
2023-10-29 19:36:15 +00:00
{?.footnotes}
2023-10-29 19:50:09 +00:00
<h2>Footnotes:</h2>
{#.footnotes}
{>real_footnote_definition/}
{/.footnotes}
2023-10-29 19:36:15 +00:00
{/.footnotes}
2023-10-24 01:51:15 +00:00
</div>
2023-12-20 00:23:56 +00:00
</article>