{% sw_extends "@Storefront/storefront/layout/footer/footer.html.twig" %}{% block layout_footer_navigation %} <div id="footerColumns" class="row footer-columns" data-collapse-footer="true" role="list"> {% block layout_footer_navigation_columns %} {% set columnElements = [ theme_config('atl-footer-columns-element-one'), theme_config('atl-footer-columns-element-two'), theme_config('atl-footer-columns-element-three'), theme_config('atl-footer-columns-element-four'), theme_config('atl-footer-columns-element-five') ] %} {% set sanitizedColumnElements = [] %} {% for element in columnElements %} {% if element not in sanitizedColumnElements and element != 'none' %} {% set sanitizedColumnElements = sanitizedColumnElements|merge([element]) %} {% endif %} {% endfor %} {% for element in sanitizedColumnElements %} {% sw_include "@Storefront/storefront/skin/global/layout/footer/column/" ~ element ~ ".html.twig" ignore missing %} {% endfor %} {% endblock %} </div>{% endblock %}{% block layout_footer_payment_shipping_logos %}{% endblock %}{% block layout_footer_bottom %} <div class="container"> {% block layout_footer_bottom_inner %} {% set leftBottomElements = [ theme_config('atl-footer-bottom-element-one'), theme_config('atl-footer-bottom-element-two') ] %} {% set sanitizedLeftBottomElements = [] %} {% for element in leftBottomElements %} {% if element not in sanitizedLeftBottomElements and element != 'none' %} {% set sanitizedLeftBottomElements = sanitizedLeftBottomElements|merge([element]) %} {% endif %} {% endfor %} {% set rightBottomElements = [ theme_config('atl-footer-bottom-element-three'), theme_config('atl-footer-bottom-element-four') ] %} {% set sanitizedRightBottomElements = [] %} {% for element in rightBottomElements %} {% if element not in sanitizedRightBottomElements and element != 'none' %} {% set sanitizedRightBottomElements = sanitizedRightBottomElements|merge([element]) %} {% endif %} {% endfor %} <div class="footer-bottom"> {% block layout_footer_bottom_row %} <div class="row justify-content-between"> {% block layout_footer_bottom_column_left %} <div class="col-12 col-md-6 order-1 order-md-0"> <div class="footer-bottom-column-left-elements d-flex justify-content-center justify-content-md-start align-items-center flex-column flex-md-row flex-md-wrap h-100"> {% block layout_footer_bottom_column_left_elements %} {% for element in sanitizedLeftBottomElements %} {% sw_include "@Storefront/storefront/skin/global/layout/footer/bottom/" ~ element ~ ".html.twig" ignore missing %} {% endfor %} {% endblock %} </div> </div> {% endblock %} {% block layout_footer_bottom_column_right %} <div class="col-12 col-md-6 order-0 order-md-1"> <div class="footer-bottom-column-right-elements d-flex justify-content-center justify-content-md-end align-items-center flex-column flex-md-row flex-md-wrap h-100"> {% block layout_footer_bottom_column_right_elements %} {% for element in sanitizedRightBottomElements %} {% if element not in sanitizedLeftBottomElements %} {% sw_include "@Storefront/storefront/skin/global/layout/footer/bottom/" ~ element ~ ".html.twig" ignore missing %} {% endif %} {% endfor %} {% endblock %} </div> </div> {% endblock %} </div> {% endblock %} </div> </div> {% endblock %} {% block layout_footer_closure %} <div class="footer-closure"> {% block layout_footer_copyright %} {% if theme_config('atl-footer-closure-copyright') == 'above' %} <div class="footer-copyright text-center mb-3"> {{ 'atl-katana-theme.footer.copyright'|trans({'%year%': "now"|date("Y") })|sw_sanitize }} </div> {% endif %} {% endblock %} {% block layout_footer_vat %} {{ parent() }} {% endblock %} </div> {% endblock %}{% endblock %}