lucht/src/includes/layouts/post.njk

13 lines
227 B
Text
Raw Normal View History

2021-09-05 19:33:01 +00:00
---
layout: base
---
<article>
<h2>{{ title }}</h2>
{{ 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>