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 %} {% endblock %}
<section id="content" class="body">
{% block content %} {% block content %}
<header>
<h1>{{ page.title }}</h1> <h1>{{ page.title }}</h1>
{% import 'translations.html' as translations with context %} {% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }} {{ translations.translations_for(page) }}
</header>
<div>
{{ page.content }} {{ page.content }}
{% if page.modified %} {% if page.modified %}
<p> <footer>
Last updated: {{ page.locale_modified }} <p>Last updated: {{ page.locale_modified }}</p>
</p> </footer>
{% endif %} {% endif %}
</div>
</section>
{% endblock %} {% endblock %}