You are here

site-status-message.html.twig in Site Status Message 8

This template handles the output of the Site Status Message.

Variables available:

  • $message: The message to display.
  • $link: An optional link to a page with more information.

File

templates/site-status-message.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * This template handles the output of the Site Status Message.
  5. *
  6. * Variables available:
  7. * - $message: The message to display.
  8. * - $link: An optional link to a page with more information.
  9. *
  10. * @ingroup themeable
  11. */
  12. #}
  13. <div id="site-status">
  14. <strong>{{ message }}</strong>{% if link %} {{ link }}{% endif %}
  15. </div>