{% load static %} {% load unicms_pages %} {% load_blocks section="3-bottom-a" as 3_bottom_a %} {% load_blocks section="3-bottom-b" as 3_bottom_b %} {% load_blocks section="3-bottom-c" as 3_bottom_c %} {% if 3_bottom_a or 3_bottom_b or 3_bottom_c %}
{% if 3_bottom_a and 3_bottom_b and 3_bottom_c %}
{{ 3_bottom_a }}
{{ 3_bottom_b }}
{{ 3_bottom_c }}
{% elif 3_bottom_a and 3_bottom_b %}
{{ 3_bottom_a }}
{{ 3_bottom_b }}
{% elif 3_bottom_a and 3_bottom_c %}
{{ 3_bottom_a }}
{{ 3_bottom_c }}
{% elif 3_bottom_b and 3_bottom_c %}
{{ 3_bottom_b }}
{{ 3_bottom_c }}
{% else %}
{{ 3_bottom_a }}{{ 3_bottom_b }}{{ 3_bottom_c }}
{% endif %}
{% endif %}