diff --git a/templates/page.html b/templates/page_default.html similarity index 85% rename from templates/page.html rename to templates/page_default.html index 00a5420873ce9badc6b6cbe76b6102d824fe80bf..f68270776d4a44901bc5822367594bb07fdfb722 100644 --- a/templates/page.html +++ b/templates/page_default.html @@ -36,15 +36,8 @@ {% block content %} <section class='page_content'> - {{ page.content }} + {% if page %} + {{ page.content }} + {% endif %} </section> {% endblock content %} - -{% block sponsorstext %} -{{ SPONSORSTEXTS[page.lang] }} -{% endblock %} - -{% block languagefooter %} -{% import 'translations.html' as translations with context %} -{{ translations.translations_for(page) }} -{% endblock %}