2014-04-25 06:33:20 +00:00
|
|
|
{#
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Default theme implementation for the node title field.
|
|
|
|
*
|
|
|
|
* This is an override of field.html.twig for the node title field. See that
|
|
|
|
* template for documentation about its details and overrides.
|
|
|
|
*
|
|
|
|
* Available variables:
|
|
|
|
* - attributes: HTML attributes for the containing span element.
|
2014-10-07 12:17:40 +00:00
|
|
|
* - items: List of all the field items. Each item contains:
|
|
|
|
* - attributes: List of HTML attributes for each item.
|
|
|
|
* - content: The field item content.
|
2014-04-25 06:33:20 +00:00
|
|
|
*
|
|
|
|
* @see field.html.twig
|
|
|
|
*
|
|
|
|
* @ingroup themeable
|
|
|
|
*/
|
|
|
|
#}
|
2014-10-07 12:17:40 +00:00
|
|
|
<span{{ attributes }}>
|
|
|
|
{%- for item in items -%}
|
|
|
|
{{ item.content }}
|
|
|
|
{%- endfor -%}
|
|
|
|
</span>
|