From 2513f32d5d0ecda11cd7b35384ef9d91baffe8c8 Mon Sep 17 00:00:00 2001 From: Mandel Olaiya Date: Tue, 17 Mar 2026 17:44:10 +0100 Subject: [PATCH] template-engine: apply carbasa footer-corners shell to engine page template --- .../templates/engine/pages/engine_page.html | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 mandelstudio/templates/engine/pages/engine_page.html diff --git a/mandelstudio/templates/engine/pages/engine_page.html b/mandelstudio/templates/engine/pages/engine_page.html new file mode 100644 index 0000000..4d88895 --- /dev/null +++ b/mandelstudio/templates/engine/pages/engine_page.html @@ -0,0 +1,45 @@ +{% extends "layout.html" %} +{% load wagtailcore_tags oxyan static string_filters %} + +{% block extrahead %} + {{ block.super }} + + + + {% include "engine/partials/gym_theme_overrides.html" %} + {% include "engine/partials/hotel_theme_overrides.html" %} + {% include "engine/partials/auto_theme_overrides.html" %} + {% include "engine/partials/bank_theme_overrides.html" %} + {% include "engine/partials/pharmacy_theme_overrides.html" %} + {% include "engine/partials/realty_theme_overrides.html" %} + {% include "engine/partials/tech_theme_overrides.html" %} + {% include "engine/partials/travel_theme_overrides.html" %} + {% include "engine/partials/saas_theme_overrides.html" %} +{% endblock %} + +{% block layout %} + + Ga naar inhoud + + {% include_header header_template|default:"engine/partials/header.html" %} +
+
+
+ {% for block in self.body %} + {% with scope_class=block.block_type|split:"_"|join:"-" %} +
+ {% include_block block %} +
+ {% endwith %} + {% endfor %} +
+
+
+ {% if not self.footer %} + + {% endif %} + {% include "oxyan/partials/footer.html" %} +{% endblock %}