16 lines
336 B
Plaintext
16 lines
336 B
Plaintext
|
{#
|
||
|
/**
|
||
|
* @file
|
||
|
* Default theme implementation for a 'form' element.
|
||
|
*
|
||
|
* Available variables
|
||
|
* - attributes: A list of HTML attributes for the wrapper element.
|
||
|
* - children: The child elements of the form.
|
||
|
*
|
||
|
* @see template_preprocess_form()
|
||
|
*
|
||
|
* @ingroup themeable
|
||
|
*/
|
||
|
#}
|
||
|
<form{{ attributes }}><div>{{ children }}</div></form>
|