Files
drupal-theme-aaron/templates/form/datetime-form.html.twig
2026-01-21 22:28:11 -06:00

16 lines
362 B
Twig

{#
/**
* @file
* Theme override of a datetime form element.
*
* Available variables:
* - attributes: HTML attributes for the datetime form element.
* - content: The datelist form element to be output.
*
* @see \Drupal\Core\Datetime\DatePreprocess::preprocessDatetimeForm()
*/
#}
<div{{ attributes.addClass('container-inline') }}>
{{ content }}
</div>