blog/src/main/_includes/post.njk

21 lines
340 B
Plaintext

---
layout: default
---
<div class="go-home">
<a href="{{ '/' | url }}">&larr; home</a>
<hr />
</div>
<section>
<hgroup>
<h2>{{ title }}</h2>
{% if date %}<h3><time>{{ date | isoDate }}</time></h3>{% endif %}
</hgroup>
{{ content | safe }}
</section>
<hr />
<a href="{{ '/' | url }}">&larr; home</a>