From e658e4743bf4fd3fd0b07a8b5dcd697f3bdf96ce Mon Sep 17 00:00:00 2001 From: Jeff MacKinnon Date: Wed, 13 Apr 2022 15:42:44 -0300 Subject: [PATCH] Some cleanup and TLC --- templates/page.html | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/templates/page.html b/templates/page.html index a776514..0da777c 100644 --- a/templates/page.html +++ b/templates/page.html @@ -13,17 +13,25 @@ {% endblock %} - +
{% block content %} +

{{ page.title }}

+ {% import 'translations.html' as translations with context %} {{ translations.translations_for(page) }} + +
+
+ {{ page.content }} {% if page.modified %} -

- Last updated: {{ page.locale_modified }} -

+ {% endif %} +
+
{% endblock %}