vendor/pimcore/portal-engine/src/Resources/views/shared/layout/head.html.twig line 7

Open in your IDE?
  1. {# @var document \Pimcore\Model\Document\Page #}
  2. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  3. <meta charset="UTF-8">
  4. <meta name="format-detection" content="telephone=no"/>
  5. {{ pimcore_head_link() }}
  6. {{ pimcore_head_style() }}
  7. {{ pimcore_head_script() }}
  8. {% if not editmode %}
  9.     <title>{% block title %}{{ portalEngine_head_title() }}{% endblock %}</title>
  10.     {% block description %}
  11.         {% if document.description %}
  12.             <meta name="description" content="{{ document.description }}">
  13.         {% endif %}
  14.     {% endblock %}
  15. {% endif %}
  16. {% block stylesheets %}
  17.     {{ encore_entry_link_tags('portal-engine-style', null, webpack_build()) }}
  18.     {% if editmode %}
  19.         {{ encore_entry_link_tags('portal-engine-editmode', null, webpack_build()) }}
  20.     {% endif %}
  21. {% endblock %}
  22. <meta name="viewport" content="width=device-width, initial-scale=1.0">