You are here

securesite-page.html.twig in Secure Site 8

Default theme implementation for the basic structure of a single Drupal page.

File

theme/securesite-page.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for the basic structure of a single Drupal page.
  5. *
  6. * @see template_preprocess_page()
  7. *
  8. */
  9. #}
  10. <!DOCTYPE html>
  11. <html{{ html_attributes }}>
  12. <head>
  13. {{ head }}
  14. <title>{{ head_title }}</title>
  15. {{ styles }}
  16. {{ scripts }}
  17. </head>
  18. <body{{ attributes }}>
  19. {% if logo %}
  20. <a href="{{ front_page }}" title="{{ 'Home'|t }}" rel="home" id="logo">
  21. <img src="{{ logo }}" alt="{{ 'Home'|t }}" />
  22. </a>
  23. {% endif %}
  24. {{ messages }}
  25. {{ content }}
  26. </body>
  27. </html>