blog/src/main/_includes/post.njk

21 lines
340 B
Plaintext
Raw Normal View History

2019-06-28 21:59:36 +02:00
---
layout: default
---
2022-11-20 23:13:24 +01:00
<div class="go-home">
<a href="{{ '/' | url }}">&larr; home</a>
<hr />
</div>
2020-05-06 19:31:25 +02:00
2022-11-20 23:13:24 +01:00
<section>
<hgroup>
<h2>{{ title }}</h2>
{% if date %}<h3><time>{{ date | isoDate }}</time></h3>{% endif %}
</hgroup>
2020-05-06 19:31:25 +02:00
2022-11-20 23:13:24 +01:00
{{ content | safe }}
</section>
2020-05-06 19:31:25 +02:00
2022-11-20 23:13:24 +01:00
<hr />
<a href="{{ '/' | url }}">&larr; home</a>