2023-06-27 17:18:52 -04:00
|
|
|
<article class="post">
|
|
|
|
<header>
|
|
|
|
<h1>{{ post.title }}</h1>
|
|
|
|
<div class="meta">
|
2023-06-28 15:16:24 -04:00
|
|
|
{{ post.date | date(format="%B %e, %Y") }} —
|
2023-06-27 17:18:52 -04:00
|
|
|
<span class="tags">
|
|
|
|
{%- for tag in post.tags -%}
|
2023-07-10 14:17:18 -04:00
|
|
|
<span><a href="/tag/{{ tag }}">{{ tag }}</a></span>
|
2023-06-27 17:18:52 -04:00
|
|
|
{%- endfor -%}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<section>
|
|
|
|
{{ post.content_html | safe }}
|
|
|
|
</section>
|
|
|
|
</article>
|