custom/plugins/TmmsTopBarNotifications/src/Resources/views/storefront/page/content/index.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/content/index.html.twig' %}
  2. {% block cms_breadcrumb %}
  3.     {% block cms_breadcrumb_topbarnotifications_before %}
  4.         {% if config('TmmsTopBarNotifications.config.topBarNotificationsShowContentIn') == "above_breadcrumb" %}
  5.             {% block cms_breadcrumb_topbarnotifications_before_inner %}
  6.                 {% sw_include '@TmmsTopBarNotifications/storefront/topbarnotifications.html.twig' %}
  7.             {% endblock %}
  8.         {% endif %}
  9.     {% endblock %}
  10.     {{ parent() }}
  11.     {% block cms_breadcrumb_topbarnotifications_after %}
  12.         {% if config('TmmsTopBarNotifications.config.topBarNotificationsShowContentIn') == "below_breadcrumb" %}
  13.             {% block cms_breadcrumb_topbarnotifications_after_inner %}
  14.                 {% sw_include '@TmmsTopBarNotifications/storefront/topbarnotifications.html.twig' %}
  15.             {% endblock %}
  16.         {% endif %}
  17.     {% endblock %}
  18. {% endblock %}