Allow showing an archive notice on a normal page

This commit is contained in:
Dexter Reed
2024-01-20 12:25:43 +00:00
parent c6ab012e6b
commit 5d52f7fad9

View File

@ -2,4 +2,10 @@
{% block content %}
{{ page.content | safe }}
{% if page.extra.archive %}
<div class="statement-container archive">
<strong class="big">⚠ Archived</strong>
{{ page.extra.archive | markdown | safe }}
</div>
{% endif %}
{% endblock content %}