vendor/dvdw/platform-choice/src/Resources/views/storefront/layout/footer/footer.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@DvdwTheme/storefront/layout/footer/footer.html.twig' %}
  2. {% set platformChoiceKey = constant('Dvdw\\PlatformChoice\\System\\SalesChannel\\Struct\\PlatformChoiceExtension::KEY') %}
  3. {% set dashboardDomainKey = constant('Dvdw\\PlatformChoice\\System\\SalesChannel\\Struct\\DashboardDomainExtension::KEY') %}
  4. {% block layout_footer_column_classes %}
  5.     {{ parent() }}
  6.     wide
  7. {% endblock %}
  8. {% block layout_footer_navigation_column_cta_webshop %}
  9.     {% if context.extensions[platformChoiceKey].isB2b() %}
  10.         {{ parent() }}
  11.     {% endif %}
  12. {% endblock %}
  13. {% block layout_footer_navigation_column_cta_consumer %}
  14.     {% if context.extensions[platformChoiceKey].isB2c() %}
  15.         {{ parent() }}
  16.     {% endif %}
  17. {% endblock %}
  18. {% block layout_footer_bottom %}
  19.     {{ parent() }}
  20.     <div style="height: 0; overflow: hidden;">
  21.         <img src="{{ context.extensions[dashboardDomainKey].domain }}" width="0" height="0" alt=""/>
  22.     </div>
  23. {% endblock %}