This way user can change the icon without overriding the template itself, plus it's cleaner this way
15 lines
303 B
HTML
15 lines
303 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{% if page.extra.archive %}
|
|
<div class="statement-container archive">
|
|
<strong class="big">
|
|
<i class="icon"></i>
|
|
Archived
|
|
</strong>
|
|
{{ page.extra.archive | markdown | safe }}
|
|
</div>
|
|
{% endif %}
|
|
{{ page.content | safe }}
|
|
{% endblock content %}
|