Adrien Beudin b0525e5bf7 fix html
2016-05-03 09:37:43 +02:00

15 lines
478 B
HTML

{% 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="paragraph">
{% if section.title %}
<h2>{{ section.title }}</h2>
{% else %}
<div class="separator"></div>
{% endif %}
<p>{{ section.text }}</p>
</section>
{% if section.background or section.color %}
</div>
{% endif %}