forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
18 lines
389 B
Twig
18 lines
389 B
Twig
{#
|
|
/**
|
|
* @file
|
|
* Default theme implementation of a datetime form element.
|
|
*
|
|
* Available variables:
|
|
* - attributes: HTML attributes for the datetime form element.
|
|
* - content: The datelist form element to be output.
|
|
*
|
|
* @see template_preprocess_datetime_form()
|
|
*
|
|
* @ingroup templates
|
|
*/
|
|
#}
|
|
<div{{ attributes.addClass('container-inline', 'form-inline') }}>
|
|
{{ content }}
|
|
</div>
|