blog.robur.coop/templates/article.html

14 lines
319 B
HTML
Raw Normal View History

2023-11-13 18:13:44 +00:00
<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>