templates/includes/common/head.html.twig line 1

Open in your IDE?
  1. <meta charset="utf-8">
  2. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  3. <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover">
  4. <meta name="format-detection" content="telephone=no" />
  5. {% if enable_no_index is defined and enable_no_index %}
  6. <meta name="robots" content="noindex" />
  7. {% endif %}
  8. <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  9. <title>{% if page_title is defined %}{{ page_title }} | {% endif %}{{ 'app_title'|trans }}</title>
  10. <meta name="description" content="{% if page_description is defined %}{{ page_description }} | {% endif %}{{ 'app_title'|trans }}" />
  11. <meta name="keywords" content="{% if page_keywords is defined %}{{ page_keywords }} | {% endif %}{{ 'app_title'|trans }}" />
  12. <link rel="apple-touch-icon" sizes="180x180" href="{{ favicon_base_url() ~ 'apple-touch-icon.png' }}">
  13. <link rel="icon" type="image/png" sizes="32x32" href="{{ favicon_base_url() ~ 'favicon-32x32.png' }}">
  14. <link rel="icon" type="image/png" sizes="16x16" href="{{ favicon_base_url() ~ 'favicon-16x16.png' }}">
  15. <link rel="manifest" href="{{ favicon_base_url() ~ 'site.webmanifest' }}">
  16. <link rel="mask-icon" href="{{ favicon_base_url() ~ 'safari-pinned-tab.svg' }}" color="#001c41">
  17. <link rel="shortcut icon" href="{{ favicon_base_url() ~ 'favicon.ico' }}">
  18. <meta name="apple-mobile-web-app-title" content="{{ 'app_title'|trans }}">
  19. <meta name="application-name" content="{{ 'app_title'|trans }}">
  20. <meta name="msapplication-TileColor" content="#001c41">
  21. <meta name="msapplication-config" content="{{ favicon_base_url() ~ 'browserconfig.xml' }}">
  22. <meta name="theme-color" content="#001c41">