Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / themes / contrib / bootstrap / templates / input / datetime-wrapper.html.twig
1 {#
2 /**
3  * @file
4  * Default theme implementation of a datetime form wrapper.
5  *
6  * Available variables:
7  * - content: The form element to be output, usually a datelist, or datetime.
8  * - title: The title of the form element.
9  * - title_attributes: HTML attributes for the title wrapper.
10  * - description: Description text for the form element.
11  * - required: An indicator for whether the associated form element is required.
12  *
13  * @ingroup templates
14  *
15  * @see template_preprocess_datetime_wrapper()
16  */
17 #}
18 {%
19   set title_classes = [
20     'control-label',
21     required ? 'form-required',
22   ]
23 %}
24 {% if title %}
25   <label{{ title_attributes.addClass(title_classes) }}>{{ title }}</label>
26 {% endif %}
27 {{ content }}
28 {% if description %}
29   <p class="help-block">{{ description }}</p>
30 {% endif %}