You are here

html.html.twig in Zircon Profile 8.0

Theme override for the basic structure of a single Drupal page.

Variables:

  • logged_in: A flag indicating if user is logged in.
  • root_path: The root path of the current page (e.g., node, admin, user).
  • node_type: The content type for the current node, if the page is a node.
  • head_title: List of text elements that make up the head_title variable. May contain or more of the following:

    • title: The title of the page.
    • name: The name of the site.
    • slogan: The slogan of the site.
  • page_top: Initial rendered markup. This should be printed before 'page'.
  • page: The rendered page markup.
  • page_bottom: Closing rendered markup. This variable should be printed after 'page'.
  • db_offline: A flag indicating if the database is offline.
  • placeholder_token: The token for generating head, css, js and js-bottom placeholders.

File

core/themes/classy/templates/layout/html.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for the basic structure of a single Drupal page.
  5. *
  6. * Variables:
  7. * - logged_in: A flag indicating if user is logged in.
  8. * - root_path: The root path of the current page (e.g., node, admin, user).
  9. * - node_type: The content type for the current node, if the page is a node.
  10. * - head_title: List of text elements that make up the head_title variable.
  11. * May contain or more of the following:
  12. * - title: The title of the page.
  13. * - name: The name of the site.
  14. * - slogan: The slogan of the site.
  15. * - page_top: Initial rendered markup. This should be printed before 'page'.
  16. * - page: The rendered page markup.
  17. * - page_bottom: Closing rendered markup. This variable should be printed after
  18. * 'page'.
  19. * - db_offline: A flag indicating if the database is offline.
  20. * - placeholder_token: The token for generating head, css, js and js-bottom
  21. * placeholders.
  22. *
  23. * @see template_preprocess_html()
  24. */
  25. #}
  26. {%
  27. set body_classes = [
  28. logged_in ? 'user-logged-in',
  29. not root_path ? 'path-frontpage' : 'path-' ~ root_path|clean_class,
  30. node_type ? 'page-node-type-' ~ node_type|clean_class,
  31. db_offline ? 'db-offline',
  32. ]
  33. %}
  34. <!DOCTYPE html>
  35. <html{{ html_attributes }}>
  36. <head>
  37. <head-placeholder token="{{ placeholder_token|raw }}">
  38. <title>{{ head_title|safe_join(' | ') }}</title>
  39. <css-placeholder token="{{ placeholder_token|raw }}">
  40. <js-placeholder token="{{ placeholder_token|raw }}">
  41. </head>
  42. <body{{ attributes.addClass(body_classes) }}>
  43. <a href="#main-content" class="visually-hidden focusable skip-link">
  44. {{ 'Skip to main content'|t }}
  45. </a>
  46. {{ page_top }}
  47. {{ page }}
  48. {{ page_bottom }}
  49. <js-bottom-placeholder token="{{ placeholder_token|raw }}">
  50. </body>
  51. </html>