blog.robur.coop/templates/article.html

13 lines
314 B
HTML

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