bingus-blog/templates/post.html

17 lines
401 B
HTML
Raw Normal View History

2024-05-01 23:12:52 +03:00
{%- import "macros.askama" as macros -%}
2024-04-18 04:05:38 +03:00
<h1 class="post-title">
{{ meta.title }}
<span class="post-author">- by {{ meta.author }}</span>
</h1>
<p class="post-desc">{{ meta.description }}</p>
<p>
<!-- prettier-ignore -->
<div>
2024-05-01 23:12:52 +03:00
{% call macros::table(meta) %}
2024-04-18 04:05:38 +03:00
</div>
<a href="/posts/{{ meta.name }}">link</a><br />
<a href="/">back to home</a>
</p>
<hr />
{{ rendered_markdown|escape("none") }}