You are here

login-shadowbox-page.html.twig in Shadowbox 8

Login shadowbox theme implementation.

Available variables:

  • title: Page title;
  • content: Page content;
  • css: Page stylesheets;
  • js: Page JavaScripts.

File

login_shadowbox/templates/login-shadowbox-page.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Login shadowbox theme implementation.
  5. *
  6. * Available variables:
  7. * - title: Page title;
  8. * - content: Page content;
  9. * - css: Page stylesheets;
  10. * - js: Page JavaScripts.
  11. *
  12. * @ingroup themeable
  13. */
  14. #}
  15. <!DOCTYPE html>
  16. <html{{ html_attributes }}>
  17. <head>
  18. <title>{{ title }}</title>
  19. {{ css }}
  20. {{ js }}
  21. </head>
  22. <body class="shadowbox_login">
  23. {{ content }}
  24. </body>
  25. </html>