12 lines
385 B
HTML
Raw Normal View History

2016-04-13 11:45:26 +02:00
{% if section.background or section.color %}
2016-11-04 12:55:02 +01:00
<div class="bg-section" style="{% if section.background %};background: {{ section.background }};{% endif %}{% if section.color %}color: {{ section.color }};{% endif %}">
{% endif %}
<section class="html">
2015-12-10 06:37:49 +01:00
<center>
2016-11-04 12:55:02 +01:00
{{ section.html }}
2015-12-10 06:37:49 +01:00
</center>
2016-11-04 12:55:02 +01:00
</section>
{% if section.background or section.color %}
2016-04-09 09:33:48 +02:00
</div>
{% endif %}