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

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_head %}
  3.     {% if pixelLexikon %}
  4.     {% if pixelLexikon.page == "index" %}
  5.         {% sw_include '@Storefront/storefront/pixel-lexikon/meta/meta.html.twig' with { 'lexikonpage' : 'index', 'pixelLexikon': pixelLexikon, 'metaData': pixelLexikon, 'metaUrl': seoUrl('frontend.lexikon.index')} %}
  6.     {% endif %}
  7.     {% if pixelLexikon.page == "listing" %}
  8.         {% sw_include '@Storefront/storefront/pixel-lexikon/meta/meta.html.twig' with {'lexikonpage' : 'listing', 'pixelLexikon': pixelLexikon, 'metaData': pixelLexikon.Category, 'metaUrl': seoUrl('frontend.lexikon.listing', { categoryId: pixelLexikon.categoryId })} %}
  9.     {% endif %}
  10.     {% if pixelLexikon.page == "detail" %}
  11.         {% sw_include '@Storefront/storefront/pixel-lexikon/meta/meta.html.twig' with {'lexikonpage' : 'index', 'pixelLexikon': pixelLexikon, 'metaData': pixelLexikon.entry , 'metaUrl': seoUrl('frontend.lexikon.detail', { id: pixelLexikon.entry.id })} %}
  12.     {% endif %}
  13.     {% else %}
  14.         {{ parent() }}
  15.     {% endif %}
  16. {% endblock %}
  17. {% block base_main_container %}
  18.     {% if pixelLexikon %}
  19.         <div class="container-main">
  20.             {% block base_breadcrumb %}
  21.                 {% if breadcrumbList %}
  22.                     {% sw_include '@Storefront/storefront/pixel-lexikon/page/basics/breadcrumb.html.twig' %}
  23.                 {% endif %}
  24.             {% endblock %}
  25.             {% block base_content %}{% sw_include '@Storefront/storefront/pixel-lexikon/page/base.html.twig' %}{% endblock %}
  26.         </div>
  27.     {% else %}
  28.         {{ parent() }}
  29.     {% endif %}
  30. {% endblock %}