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

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/meta.html.twig' %}
  2. {% block layout_head_canonical %}
  3.     {% if cbaxModulLexicon %}
  4.         {% sw_include '@Storefront/storefront/layout/meta-canonical.html.twig' %}
  5.     {% else %}
  6.         {{ parent() }}
  7.     {% endif %}
  8. {% endblock %}
  9. {% block layout_head_meta_tags_keywords %}{% apply spaceless %}
  10.     {% if cbaxModulLexicon %}
  11.         {% sw_include '@Storefront/storefront/layout/meta-keywords.html.twig' %}
  12.     {% else %}
  13.         {{ parent() }}
  14.     {% endif %}
  15. {% endapply %}{% endblock %}
  16. {% block layout_head_meta_tags_description %}{% apply spaceless %}
  17.     {% if cbaxModulLexicon %}
  18.         {% sw_include '@Storefront/storefront/layout/meta-description.html.twig' %}
  19.     {% else %}
  20.         {{ parent() }}
  21.     {% endif %}
  22. {% endapply %}{% endblock %}
  23. {% block layout_head_title_inner %}{% apply spaceless %}
  24.     {% if cbaxModulLexicon %}
  25.         {% sw_include '@Storefront/storefront/layout/meta-title.html.twig' %}
  26.     {% else %}
  27.         {{ parent() }}
  28.     {% endif %}
  29. {% endapply %}{% endblock %}
  30. {% block layout_head_meta_tags_opengraph %}
  31.     {% if cbaxModulLexicon %}
  32.         {% sw_include '@Storefront/storefront/layout/meta-tags-opengraph.html.twig' %}
  33.     {% else %}
  34.         {{ parent() }}
  35.     {% endif %}
  36. {% endblock %}