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