{% load static %} {% load unicms_pages %} {% load_blocks section="1-top-a" as 1_top_a %} {% load_blocks section="1-top-b" as 1_top_b %} {% load_blocks section="1-top-c" as 1_top_c %} {% if 1_top_a or 1_top_b or 1_top_c %}
{% if 1_top_a and 1_top_b and 1_top_c %}
{{ 1_top_a }}
{{ 1_top_b }}
{{ 1_top_c }}
{% elif 1_top_a and 1_top_b %}
{{ 1_top_a }}
{{ 1_top_b }}
{% elif 1_top_a and 1_top_c %}
{{ 1_top_a }}
{{ 1_top_c }}
{% elif 1_top_b and 1_top_c %}
{{ 1_top_b }}
{{ 1_top_c }}
{% else %}
{{ 1_top_a }}{{ 1_top_b }}{{ 1_top_c }}
{% endif %}
{% endif %}