Hi all, (new to drupal so forgive me if this is a simple question)
I cannot find how to access specific fields inside an element.
EXAMPLE:
I made an template for a node field:
{% for item in items %}
{{ item.content }}
{% endfor %}
this works and prints out the needed html < a href="link" >title< /a >
But i want more, so i need more control:
I tried: {{ item.content.title }}, {{ item.content.getTitle }} {{ item.content.get('title') }} {{ item.content.get('title').value }}