2016-04-13 11:45:26 +02:00

10 lines
345 B
HTML

{% if section.background or section.color %}
<div style="{% if section.background -%}padding: 1px 0px;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 %}