diff --git a/core/modules/node/templates/field--node--title.html.twig b/core/modules/node/templates/field--node--title.html.twig
index 25432c0..8051544 100644
--- a/core/modules/node/templates/field--node--title.html.twig
+++ b/core/modules/node/templates/field--node--title.html.twig
@@ -8,11 +8,17 @@
*
* Available variables:
* - attributes: HTML attributes for the containing span element.
- * - items: List of all the field items.
+ * - items: List of all the field items. Each item contains:
+ * - attributes: List of HTML attributes for each item.
+ * - value: The field item value.
*
* @see field.html.twig
*
* @ingroup themeable
*/
#}
-{{ items }}
+
+ {%- for item in items -%}
+ {{ item.value }}
+ {%- endfor -%}
+