grav-theme-disroot/templates/modular.html.twig

18 lines
513 B
Twig
Raw Permalink Normal View History

2019-01-29 15:14:13 +01:00
{% extends 'partials/base.html.twig' %}
{% set show_onpage_menu = header.onpage_menu == true or header.onpage_menu is null %}
{% macro pageLinkName(text) %}{{ text|lower|replace({' ':'_'}) }}{% endmacro %}
{% block content %}
2021-02-05 20:07:20 +01:00
{{ page.content|raw }}
2020-01-01 21:16:07 +01:00
<div id="content" style="background-color: {{ page.header.bgcolor }}">
{% include 'partials/banner.html.twig' %}
2019-01-29 15:14:13 +01:00
{% for module in page.collection() %}
2021-02-05 20:07:20 +01:00
{{ module.content|raw }}
2019-01-29 15:14:13 +01:00
{% endfor %}
</div>
2019-01-29 15:14:13 +01:00
{% endblock %}