I think that's everything; perfect flow achieved

This commit is contained in:
benjamin melançon 2018-11-19 20:26:14 -05:00
parent 2850589004
commit 44b4b33d38

View file

@ -104,6 +104,7 @@
{% set bust_out = false %} {% set bust_out = false %}
{% set busted_out = false %} {% set busted_out = false %}
{% set walls_up = false %}
{% if content.field_body_paragraph %} {% if content.field_body_paragraph %}
{% for i, paragraph in content.field_body_paragraph if i|first != '#' %} {% for i, paragraph in content.field_body_paragraph if i|first != '#' %}
@ -111,17 +112,30 @@
{% if paragraph.field_style_escape_flow is not empty %} {% if paragraph.field_style_escape_flow is not empty %}
{% set bust_out = paragraph.field_style_escape_flow %} {% set bust_out = paragraph.field_style_escape_flow %}
{% endif %} {% endif %}
{% if bust_out != true %} {% if bust_out != true and busted_out != true %}
{# We need to be in the flow but the lugeslide walls aren't up yet #}
<section class="section" data-headerbg="light">
<div class="container">
<div class="flow content">
{% set walls_up = true %}
{% elseif bust_out == true and walls_up == true %}
{# We need to take the content flow sides down before our paragraph #}
</div>
</div>
</section>
{% set walls_up = false %}
{% endif %}
{{ paragraph }} {{ paragraph }}
{% endif %} {% endif %}
{% endfor %} {% endfor %}
{% endif %} {% endif %}
<section class="section" data-headerbg="light">
<div class="container">
<div class="flow content">
<!-- Unexpected extra content --> <!-- Unexpected extra content -->
{{ content|without('field_body_paragraph', 'field_authors', 'uid', 'created') }} {{ content|without('field_body_paragraph', 'field_authors', 'uid', 'created') }}
{% if walls_up == true %}
{# If the flow sides are still up after all is said and done, close 'em up. #}
</div> </div>
</div> </div>
</section> </section>
{% endif %}