Reynir Björnsson
3b1d9f0805
All tags are now on a single page. This is easier to implement with yocaml2's architecture.
13 lines
334 B
HTML
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>
|