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