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,24 +104,38 @@
{% set bust_out = false %}
{% set busted_out = false %}
{% set walls_up = false %}
{% if content.field_body_paragraph %}
{% for i, paragraph in content.field_body_paragraph if i|first != '#' %}
{% if i is not same as(title_paragraph_index) %}
{% if paragraph.field_style_escape_flow is not empty %}
{% set bust_out = paragraph.field_style_escape_flow %}
{% endif %}
{% if bust_out != true %}
{{ paragraph }}
{% endif %}
{% endfor %}
{% if content.field_body_paragraph %}
{% for i, paragraph in content.field_body_paragraph if i|first != '#' %}
{% if i is not same as(title_paragraph_index) %}
{% if paragraph.field_style_escape_flow is not empty %}
{% set bust_out = paragraph.field_style_escape_flow %}
{% endif %}
{% 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">
<!-- Unexpected extra content -->
{{ content|without('field_body_paragraph', 'field_authors', 'uid', 'created') }}
{% 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 }}
{% endif %}
{% endfor %}
{% endif %}
<!-- Unexpected extra content -->
{{ 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>
</section>
{% endif %}