13 lines
382 B
HTML
13 lines
382 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="html">
|
|
<center>
|
|
{{ section.html }}
|
|
</center>
|
|
</section>
|
|
{% if section.background or section.color %}
|
|
</div>
|
|
{% endif %}
|
|
|