templates/snippets/footer.html.twig line 1

Open in your IDE?
  1. {% if editmode %}
  2.     {{ include('layout/partials/css.html.twig') }}
  3.     {% embed 'includes/editmode-box.html.twig' %}
  4.         {% block editmodeSettings %}
  5.             <b>Show top row?</b> {{ pimcore_checkbox('showFooterTop', { 'reload': true }) }}
  6.         {% endblock %}
  7.     {% endembed %}
  8. {% endif %}
  9. <footer class="footer js-render-template {{ pimcore_placeholder('hasStickyBar').value ? 'mt-md-0' : '' }}">
  10.     {% if not editmode %}<template class="js-render-template__template">{% endif %}
  11.         {% if not app.request.get('hideAdditionalBar') and pimcore_checkbox('showFooterTop').checked() %}
  12.             {{ include('snippets/partials/footer-additional.html.twig', with_context = false) }}
  13.         {% endif %}
  14.         {{ include('snippets/partials/footer-main.html.twig', with_context = false) }}
  15.         {{ include('snippets/partials/footer-brands.html.twig', with_context = false) }}
  16.     {% if not editmode %}</template>{% endif %}
  17. </footer>