custom/plugins/SalvanaPferde2022/src/Resources/views/storefront/page/product-detail/meta.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/product-detail/meta.html.twig' %}
  2. {% block layout_head_meta_tags_general %}
  3.   {% set fields = page.product.customFields %}
  4.   <meta name="author"
  5.         content="{{ metaInformation.author|striptags }}"/>
  6.   <meta name="robots"
  7.         content="{% block layout_head_meta_tags_robots %}{% if fields.custom_seo_robots %}{{ fields.custom_seo_robots }}{% else %}{{ metaInformation.robots }}{% endif %}{% endblock %}"/>
  8.   <meta name="revisit-after"
  9.         content="{{ metaInformation.revisit|striptags }}"/>
  10.   <meta name="keywords"
  11.         content="{% block layout_head_meta_tags_keywords %}{{ metaKeywords }}{% endblock %}"/>
  12.   <meta name="description"
  13.         content="{% block layout_head_meta_tags_description %}{{ metaDescription }}{% endblock %}"/>
  14. {% endblock %}