{% sw_extends '@DvdwTheme/storefront/layout/footer/footer.html.twig' %}
{% set platformChoiceKey = constant('Dvdw\\PlatformChoice\\System\\SalesChannel\\Struct\\PlatformChoiceExtension::KEY') %}
{% set dashboardDomainKey = constant('Dvdw\\PlatformChoice\\System\\SalesChannel\\Struct\\DashboardDomainExtension::KEY') %}
{% block layout_footer_column_classes %}
{{ parent() }}
wide
{% endblock %}
{% block layout_footer_navigation_column_cta_webshop %}
{% if context.extensions[platformChoiceKey].isB2b() %}
{{ parent() }}
{% endif %}
{% endblock %}
{% block layout_footer_navigation_column_cta_consumer %}
{% if context.extensions[platformChoiceKey].isB2c() %}
{{ parent() }}
{% endif %}
{% endblock %}
{% block layout_footer_bottom %}
{{ parent() }}
<div style="height: 0; overflow: hidden;">
<img src="{{ context.extensions[dashboardDomainKey].domain }}" width="0" height="0" alt=""/>
</div>
{% endblock %}