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

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_header_inner %}
  3.     {% block base_header_inner_topbarnotifications_before %}
  4.         {% if config('TmmsTopBarNotifications.config.topBarNotificationsShowContentIn') == "topbar" %}
  5.             {% block base_header_inner_topbarnotifications_before_inner %}
  6.                 {% sw_include '@TmmsTopBarNotifications/storefront/topbarnotifications.html.twig' %}
  7.             {% endblock %}
  8.         {% endif %}
  9.     {% endblock %}
  10.     {{ parent() }}
  11.     {% block base_header_inner_topbarnotifications_after %}{% endblock %}
  12. {% endblock %}
  13. {% block base_footer %}
  14.     {% block base_footer_topbarnotifications_before %}
  15.         {% if config('TmmsTopBarNotifications.config.topBarNotificationsShowContentIn') == "footerbar" %}
  16.             {% block base_footer_topbarnotifications_before_inner %}
  17.                 {% sw_include '@TmmsTopBarNotifications/storefront/topbarnotifications.html.twig' %}
  18.             {% endblock %}
  19.         {% endif %}
  20.     {% endblock %}
  21.     {{ parent() }}
  22.     {% block base_footer_topbarnotifications_after %}{% endblock %}
  23. {% endblock %}