14 lines
387 B
HTML
Raw Normal View History

2017-04-25 16:24:41 +02:00
{% if section.background or section.color %}
<div id="bg-section" style="{% if section.background -%}background: {{ section.background }};{% endif %}{% if section.color -%}color: {{ section.color }};{% endif %}">
{% endif %}
<section class="html">
<center>
{{ section.html }}
</center>
</section>
{% if section.background or section.color %}
</div>
{% endif %}