custom/plugins/SemesManufacturerPlus/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 manufacturer = semesManufacturer.extensions.manufacturerPlus %}
  3. {% block layout_head_canonical %}
  4.     {% if semesManufacturer %}
  5.         <link rel="canonical" href="{{ manufacturer.canonical }}" />
  6.     {% else %}
  7.         {{ parent() }}
  8.     {% endif %}
  9. {% endblock %}
  10. {% block layout_head_meta_tags_keywords %}{% apply spaceless %}
  11.     {% if semesManufacturer %}
  12.         {{ manufacturer.metaKeywords|striptags|trim|u.truncate(160) }}
  13.     {% else %}
  14.         {{ parent() }}
  15.     {% endif %}
  16. {% endapply %}{% endblock %}
  17. {% block layout_head_meta_tags_description %}{% apply spaceless %}
  18.     {% if semesManufacturer %}
  19.         {% if manufacturer.metaDescription %}
  20.             {{ manufacturer.metaDescription|striptags|trim|u.truncate(160) }}
  21.         {% else %}
  22.             {{ semesManufacturer.translated.description|striptags|trim|u.truncate(160) }}
  23.         {% endif %}
  24.     {% else %}
  25.         {{ parent() }}
  26.     {% endif %}
  27. {% endapply %}{% endblock %}
  28. {% block layout_head_title_inner %}{% apply spaceless %}
  29.     {% if semesManufacturer %}
  30.         {% if manufacturer.metaTitle %}
  31.             {{  manufacturer.metaTitle|striptags|trim }}
  32.         {% else %}
  33.             {{ semesManufacturer.translated.name }} | {{ metaTitle }}
  34.         {% endif %} 
  35.     {% else %}
  36.         {{ parent() }}
  37.     {% endif %}
  38. {% endapply %}{% endblock %}