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 %}