lucht/src/includes/layouts/post.njk
2021-09-05 22:39:19 -04:00

12 lines
227 B
Text

---
layout: base
---
<article>
<h2>{{ title }}</h2>
{{ content | safe }}
{% for tag in tags %}
{% set tagUrl %}/tags/{{ tag | slug }}/{% endset %}
<a href="{{ tagUrl | url }}">{{ tag }}</a>
{% endfor %}
</article>