Security update for Core, with self-updated composer
[yaffs-website] / web / modules / contrib / environment_indicator / templates / environment-indicator.html.twig
1 {#
2 /**
3  * @file
4  * Default theme implementation of an environment indicator element.
5  *
6  * Available variables:
7  * - title: The name of the environment.
8  * - description: Additional information to be shown.
9  * - attributes: HTML attributes for the environment indicator.
10  *
11  * @see template_preprocess_datetime_form()
12  *
13  * @ingroup themeable
14  */
15 #}
16 <div{{ attributes }}>
17   {{ title }}
18   {% if description %}
19     <span class="description">{{ description }}</span>
20   {% endif %}
21   {% if switcher %}
22     {{ switcher }}
23   {% endif %}
24 </div>