13 lines
294 B
Text
13 lines
294 B
Text
---
|
|
layout: base
|
|
---
|
|
<p>« 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>
|