blog.robur.coop/templates/article.html
Reynir Björnsson 3b1d9f0805 Implement tags
All tags are now on a single page. This is easier to implement with
yocaml2's architecture.
2024-10-09 11:51:14 +02:00

13 lines
334 B
HTML

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