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.
1 theme call to site-status-message.html.twig
- site_status_message_page_top in ./
site_status_message.module - Implements hook_page_top().
File
templates/site-status-message.html.twigView source
- {#
- /**
- * @file
- * 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.
- *
- * @ingroup themeable
- */
- #}
- <div id="site-status">
- <strong>{{ message }}</strong>{% if link %} {{ link }}{% endif %}
- </div>