11 lines
281 B
HTML
11 lines
281 B
HTML
{% extends "base.html" %}
|
|
|
|
{% 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 %} |