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