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