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