lucht/src/includes/layouts/post.njk
2021-09-16 16:51:48 -04:00

13 lines
294 B
Text

---
layout: base
---
<p>&laquo; Back to posts</p>
<article>
<h2>{{ title }}</h2>
<time>{{ date | dateFilter }}</time>
{{ content | safe }}
{% for tag in tags %}
{% set tagUrl %}/tags/{{ tag | slug }}/{% endset %}
<a href="{{ tagUrl | url }}">{{ tag }}</a>
{% endfor %}
</article>