2115b76f536c6e93c1acaf338b654e55f985095b
[yaffs-website] / web / core / themes / classy / templates / misc / status-messages.html.twig
1 {#
2 /**
3  * @file
4  * Theme override 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  * - attributes: HTML attributes for the element, including:
19  *   - class: HTML classes.
20  */
21 #}
22 {% block messages %}
23 {% for type, messages in message_list %}
24   {%
25     set classes = [
26       'messages',
27       'messages--' ~ type,
28     ]
29   %}
30   <div role="contentinfo" aria-label="{{ status_headings[type] }}"{{ attributes.addClass(classes)|without('role', 'aria-label') }}>
31     {% if type == 'error' %}
32       <div role="alert">
33     {% endif %}
34       {% if status_headings[type] %}
35         <h2 class="visually-hidden">{{ status_headings[type] }}</h2>
36       {% endif %}
37       {% if messages|length > 1 %}
38         <ul class="messages__list">
39           {% for message in messages %}
40             <li class="messages__item">{{ message }}</li>
41           {% endfor %}
42         </ul>
43       {% else %}
44         {{ messages|first }}
45       {% endif %}
46     {% if type == 'error' %}
47       </div>
48     {% endif %}
49   </div>
50   {# Remove type specific classes. #}
51   {% set attributes = attributes.removeClass(classes) %}
52 {% endfor %}
53 {% endblock messages %}