blog.robur.coop/templates/article.html

14 lines
334 B
HTML
Raw Normal View History

<a href="{{ host }}/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="{{ host }}/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>