Some cleanup and TLC

This commit is contained in:
Jeff MacKinnon 2022-04-13 15:42:44 -03:00
parent 516c9839a3
commit e658e4743b

View file

@ -13,17 +13,25 @@
{% endblock %}
<section id="content" class="body">
{% block content %}
<header>
<h1>{{ page.title }}</h1>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
</header>
<div>
{{ page.content }}
{% if page.modified %}
<p>
Last updated: {{ page.locale_modified }}
</p>
<footer>
<p>Last updated: {{ page.locale_modified }}</p>
</footer>
{% endif %}
</div>
</section>
{% endblock %}