Issue #2152211 by joelpittet, IshaDakota, rteijeiro, steveoliver, hussainweb, shanethehat, jenlampton, kpa, AnythonyR, EVIIILJ, kgoel, Cottser, dsdeiz, hanpersand: Convert theme_form() to Twig.
2014-03-07 22:20:52 +00:00
|
|
|
{#
|
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
#}
|
2014-04-28 15:11:19 +00:00
|
|
|
<form{{ attributes }}>
|
|
|
|
{{ children }}
|
|
|
|
</form>
|