13 lines
319 B
HTML
13 lines
319 B
HTML
<a href="/index.html">Back to index</a>
|
|
|
|
<article>
|
|
<h1>{{ metadata.title }}</h1>
|
|
<ul class="tags-list">
|
|
{%- for tag in tags -%}
|
|
<li><a href="/tags/{{ tag }}.html">{{ tag }}</a></li>
|
|
{%- endfor -%}
|
|
</ul>
|
|
{%- autoescape false -%}
|
|
{{ body }}
|
|
{% endautoescape -%}
|
|
</article>
|