grav-theme-disroot/templates/modular/2col.html.twig
2019-01-29 15:14:13 +01:00

18 lines
598 B
Twig

<div class="two-col" style="background-color:{{ page.header.bgcolor }};">
<div class="two-col-content" style="color:{{ page.header.fontcolor }}; text-align:{{ page.header.text_align }};" >
{% block content %}
{% set colsize = ['five', 'five'] %}
<section id="{{ page.header.section_id }}" class="two-col">
<div class="row">
{% for key, column in page.content|split('<hr />') %}
<div class="{{ colsize[key] }} columns">
{{ column }}
</div>
{% endfor %}
</div>
</section>
{% endblock %}
</div>
</div>