10 lines
381 B
HTML
10 lines
381 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="header">
|
|
<h1 class=header>{{ section.text }}</h1>
|
|
</section>
|
|
{% if section.background or section.color %}
|
|
</div>
|
|
{% endif %}
|