lucht/src/includes/layouts/post.njk

14 lines
294 B
Text
Raw Normal View History

2021-09-05 19:33:01 +00:00
---
layout: base
---
2021-09-16 20:51:48 +00:00
<p>&laquo; Back to posts</p>
2021-09-05 19:33:01 +00:00
<article>
<h2>{{ title }}</h2>
2021-09-16 20:51:48 +00:00
<time>{{ date | dateFilter }}</time>
2021-09-05 19:33:01 +00:00
{{ content | safe }}
2021-09-06 02:39:19 +00:00
{% for tag in tags %}
{% set tagUrl %}/tags/{{ tag | slug }}/{% endset %}
<a href="{{ tagUrl | url }}">{{ tag }}</a>
{% endfor %}
2021-09-05 19:33:01 +00:00
</article>