18 lines
388 B
Twig
18 lines
388 B
Twig
|
|
{#
|
||
|
|
/**
|
||
|
|
* @file
|
||
|
|
* Default theme implementation to display messages in the navigation toolbar.
|
||
|
|
*
|
||
|
|
* Available variables:
|
||
|
|
* - messages: An array containing the messages to display.
|
||
|
|
*
|
||
|
|
* @ingroup themeable
|
||
|
|
*/
|
||
|
|
#}
|
||
|
|
{{ attach_library('navigation/internal.navigation-messages') }}
|
||
|
|
<div class="toolbar-block__list">
|
||
|
|
{% for message in message_list %}
|
||
|
|
{{ message }}
|
||
|
|
{% endfor %}
|
||
|
|
</div>
|