20 lines
450 B
Twig
20 lines
450 B
Twig
{#
|
|
/**
|
|
* @file
|
|
* Default theme implementation for a form base container as text.
|
|
*
|
|
* Available variables:
|
|
* - element: The form element.
|
|
* - title: The label for the container.
|
|
* - value: The content for the container.
|
|
* - options Associative array of options for element.
|
|
* - email: Flag to determine if element is for an email.
|
|
*/
|
|
#}
|
|
|
|
{% if title %}{{ title|upper }}
|
|
{% for i in 1..title|length %}-{% endfor %}
|
|
{% endif %}
|
|
|
|
{{ value }}
|