15 lines
492 B
HTML
Raw Normal View History

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