10 lines
347 B
HTML
Raw Normal View History

2016-05-26 17:04:57 +02:00
{% if section.background or section.color %}
<div class="bg-section" style="{% if section.background -%}background: {{ section.background }};{% endif %}{% if section.color -%}color: {{ section.color }};{% endif %}">
{% endif %}
<section class="text">
{{ section.text }}
</section>
{% if section.background or section.color %}
</div>
{% endif %}