Files
blog/templates/page.html
daudix 7bb9b19e77 Make previous commit actually work
This is a huge mess, Zola is really not i18n-friendly
2024-06-16 04:57:51 +03:00

15 lines
361 B
HTML

{% extends "base.html" %}
{% block content %}
{% if page.extra.archive %}
<div class="statement-container archive">
<strong class="big">
<i class="icon"></i>
{{ trans(key="archived", lang=lang) | default(value="Archived") }}
</strong>
{{ page.extra.archive | markdown | safe }}
</div>
{% endif %}
{{ page.content | safe }}
{% endblock content %}