custom/plugins/ZweiPunktStageWare/src/Resources/views/storefront/base.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_body_classes %}{{ parent() }}{% if page.stageware is defined %} stageware-stage stage-{{ page.stageware.slug }}{% endif %}{% endblock %}
  3. {% block base_footer %}
  4.     {{ parent() }}
  5.     {% if page.stageware is defined %}
  6.         <div id="stage-wrapper">
  7.             <div id="stage-name">
  8.                 {{ page.stageware.name }}
  9.             </div>
  10.         </div>
  11.     {% endif %}
  12. {% endblock %}