blog.robur.coop/templates/article.html

14 lines
314 B
HTML
Raw Normal View History

<a href="/index.html">Back to index</a>
2023-11-13 18:13:44 +00:00
<article>
<h1>{{ title }}</h1>
2023-11-13 18:13:44 +00:00
<ul class="tags-list">
{%- for tag in tags -%}
<li><a href="/tags.html#tag-{{ tag }}">{{ tag }}</a></li>
2023-11-13 18:13:44 +00:00
{%- endfor -%}
</ul>
{%- autoescape false -%}
{{ yocaml_body }}
2023-11-13 18:13:44 +00:00
{% endautoescape -%}
</article>