15 lines
478 B
HTML
Raw Normal View History

2016-04-13 11:45:26 +02:00
{% if section.background or section.color %}
2016-05-03 09:37:43 +02:00
<div class="bg-section" style="{% if section.background -%}background: {{ section.background }};{% endif %}{% if section.color -%}color: {{ section.color }};{% endif %}">
2016-04-09 09:33:48 +02:00
{% endif %}
<section class="paragraph">
{% if section.title %}
<h2>{{ section.title }}</h2>
{% else %}
2016-05-03 09:37:43 +02:00
<div class="separator"></div>
{% endif %}
<p>{{ section.text }}</p>
</section>
2016-04-13 11:45:26 +02:00
{% if section.background or section.color %}
2016-04-09 09:33:48 +02:00
</div>
{% endif %}