custom/plugins/NenoMarketingEssentials/src/Resources/views/storefront/layout/meta.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/meta.html.twig' %}
  2. {% set tabs = page.extensions.nme_tabs.elements %}
  3.  {% block layout_head_favicon %}
  4.      {% if tabs %}
  5.          <link rel="shortcut icon" href="{{ tabs|first.mediaImage|sw_encode_media_url }}">
  6.      {% else %}
  7.          {{ parent() }}
  8.      {% endif %}
  9.  {% endblock %}
  10. {% block layout_head_title %}
  11.     {% if tabs %}
  12.         <title itemprop="name">
  13.             {{ tabs|first.text }}
  14.         </title>
  15.     {% else %}
  16.         {{ parent() }}
  17.     {% endif %}
  18. {% endblock %}