natter/default_environment/templates/html/blog_post_page.dust

20 lines
502 B
Plaintext
Raw Normal View History

2023-12-20 00:23:56 +00:00
<article class="blog_post">
{?.title}<h1>{?.self_link}<a class="blog_post_title" href="{.self_link}">{.title}</a>{:else}<span class="blog_post_title">{.title}</span>{/.self_link}</h1>{/.title}
{! 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>