You are here

html.html.twig in Zircon Profile 8.0

<!DOCTYPE html>
<html{{ html_attributes }}>
  <head>
    <head-placeholder token="{{ placeholder_token|raw }}">
    <title>{{ head_title|safe_join(' | ') }}</title>
    <css-placeholder token="{{ placeholder_token|raw }}">
    <js-placeholder token="{{ placeholder_token|raw }}">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <meta name="HandheldFriendly" content="true" />
    <meta name="apple-touch-fullscreen" content="YES" />
  </head>
  <body{{ attributes }}>
    <a href="#main-content" class="visually-hidden focusable">
      {{ 'Skip to main content'|t }}
    </a>
    {{ page_top }}
    {{ page }}
    {{ page_bottom }}
    <js-bottom-placeholder token="{{ placeholder_token|raw }}">
  </body>
</html>

File

themes/zircon/templates/html.html.twig
View source
  1. <!DOCTYPE html>
  2. <html{{ html_attributes }}>
  3. <head>
  4. <head-placeholder token="{{ placeholder_token|raw }}">
  5. <title>{{ head_title|safe_join(' | ') }}</title>
  6. <css-placeholder token="{{ placeholder_token|raw }}">
  7. <js-placeholder token="{{ placeholder_token|raw }}">
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  9. <meta name="HandheldFriendly" content="true" />
  10. <meta name="apple-touch-fullscreen" content="YES" />
  11. </head>
  12. <body{{ attributes }}>
  13. <a href="#main-content" class="visually-hidden focusable">
  14. {{ 'Skip to main content'|t }}
  15. </a>
  16. {{ page_top }}
  17. {{ page }}
  18. {{ page_bottom }}
  19. <js-bottom-placeholder token="{{ placeholder_token|raw }}">
  20. </body>
  21. </html>