[mod] fix indentation

This commit is contained in:
Laurent Peuch 2016-11-01 12:28:45 +01:00
parent 7f7d93d164
commit aa7121250f

View File

@ -1,16 +1,19 @@
{% if section.background or section.color %} {% if section.background or section.color %}
<div id="bg-section" style="{% if section.background -%}background: {{ section.background }};{% endif %}{% if section.color -%}color: {{ section.color }};{% endif %}"> <div id="bg-section" style="{% if section.background -%}background: {{ section.background }};{% endif %}{% if section.color -%}color: {{ section.color }};{% endif %}">
{% endif %} {% endif %}
<div class="container"> <div class="container">
{% if section.title %} {% if section.title %}
<div id="{{ section.title }}" class="scrollspy"> <div id="{{ section.title }}" class="scrollspy">
<h2>{{ section.title }}</h2> <h2>{{ section.title }}</h2>
{% else %} {% else %}
<div class="separator"></div> <div class="separator"></div>
{% endif %} {% endif %}
<p class="flow-text">{{ section.text }}</p>
</div> <p class="flow-text">{{ section.text }}</p>
</div>
</div> </div>
{% if section.background or section.color %} {% if section.background or section.color %}
</div> </div>
{% endif %} {% endif %}