
| Current Path : /var/www/html/strat/web/modules/contrib/webform/templates/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/strat/web/modules/contrib/webform/templates/webform-element-base-html.html.twig |
{#
/**
* @file
* Default theme implementation for a webform base element as html.
*
* Available variables:
* - element: The element.
* - title: The label for the element.
* - value: The content for the element.
* - item: The form item used to display the element.
* - options Associative array of options for element.
* - multiline: Flag to determine if value spans multiple lines.
* - email: Flag to determine if element is for an email.
*/
#}
{% if options.email %}
{% if title %}<b>{{ title }}</b><br />{% endif %}{{ value }}<br /><br />
{% else %}
{{ item }}
{% endif %}