forked from slonk/bingus-blog
20 lines
623 B
HTML
20 lines
623 B
HTML
<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>
|
|
{% match meta.created_at %} {% when Some(created_at) %}
|
|
written: {{ created_at|date }}<br />
|
|
{% when None %} {% endmatch %}
|
|
{% match meta.modified_at %} {% when Some(modified_at) %}
|
|
last modified: {{ modified_at|date }}
|
|
{% when None %} {% endmatch %}
|
|
</div>
|
|
<a href="/posts/{{ meta.name }}">link</a><br />
|
|
<a href="/">back to home</a>
|
|
</p>
|
|
<hr />
|
|
{{ rendered_markdown|escape("none") }}
|