You are here

status-messages.html.twig in Zircon Profile 8.0

Default theme implementation for status messages.

Displays status, error, and warning messages, grouped by type.

An invisible heading identifies the messages for assistive technology. Sighted users see a colored box. See http://www.w3.org/TR/WCAG-TECHS/H69.html for info.

Add an ARIA label to the contentinfo area so that assistive technology user agents will better describe this landmark.

Available variables:

  • message_list: List of messages to be displayed, grouped by type.
  • status_headings: List of all status types.
  • display: (optional) May have a value of 'status' or 'error' when only displaying messages of that specific type.
  • attributes: HTML attributes for the element, including:
    • class: HTML classes.

See also

template_preprocess_status_messages()

File

core/modules/system/templates/status-messages.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for status messages.
  5. *
  6. * Displays status, error, and warning messages, grouped by type.
  7. *
  8. * An invisible heading identifies the messages for assistive technology.
  9. * Sighted users see a colored box. See http://www.w3.org/TR/WCAG-TECHS/H69.html
  10. * for info.
  11. *
  12. * Add an ARIA label to the contentinfo area so that assistive technology
  13. * user agents will better describe this landmark.
  14. *
  15. * Available variables:
  16. * - message_list: List of messages to be displayed, grouped by type.
  17. * - status_headings: List of all status types.
  18. * - display: (optional) May have a value of 'status' or 'error' when only
  19. * displaying messages of that specific type.
  20. * - attributes: HTML attributes for the element, including:
  21. * - class: HTML classes.
  22. *
  23. * @see template_preprocess_status_messages()
  24. *
  25. * @ingroup themeable
  26. */
  27. #}
  28. {% for type, messages in message_list %}
  29. <div role="contentinfo" aria-label="{{ status_headings[type] }}"{{ attributes|without('role', 'aria-label') }}>
  30. {% if type == 'error' %}
  31. <div role="alert">
  32. {% endif %}
  33. {% if status_headings[type] %}
  34. <h2 class="visually-hidden">{{ status_headings[type] }}</h2>
  35. {% endif %}
  36. {% if messages|length > 1 %}
  37. <ul>
  38. {% for message in messages %}
  39. <li>{{ message }}</li>
  40. {% endfor %}
  41. </ul>
  42. {% else %}
  43. {{ messages|first }}
  44. {% endif %}
  45. {% if type == 'error' %}
  46. </div>
  47. {% endif %}
  48. </div>
  49. {% endfor %}

Related topics