{% if editmode %}
{{ include('layout/partials/css.html.twig') }}
{% embed 'includes/editmode-box.html.twig' %}
{% block editmodeSettings %}
<b>Show top row?</b> {{ pimcore_checkbox('showFooterTop', { 'reload': true }) }}
{% endblock %}
{% endembed %}
{% endif %}
{% set microSiteConfig = getSiteConfig() is instanceof('\\Pimcore\\Model\\DataObject\\MicroSiteConfig') ? getSiteConfig() : null %}
{% set isMicroSiteItAg = microSiteConfig and microSiteConfig.name == 'zitag' %}
<footer class="footer js-render-template {{ pimcore_placeholder('hasStickyBar').value ? 'mt-md-0' : '' }}">
{% if not editmode %}<template class="js-render-template__template">{% endif %}
{% if not app.request.get('hideAdditionalBar') and pimcore_checkbox('showFooterTop').checked() %}
{{ include('snippets/partials/footer-additional.html.twig', {
'showRight': isMicroSiteItAg
}, with_context = false) }}
{% endif %}
{{ include('snippets/partials/footer-main.html.twig', {
'showRight': isMicroSiteItAg,
'showLogo': not isMicroSiteItAg
}, with_context = false) }}
{{ include('snippets/partials/footer-brands.html.twig', {
'showLinksRight': isMicroSiteItAg
}, with_context = false) }}
{% if not editmode %}</template>{% endif %}
</footer>