Chris@0: {# Chris@0: /** Chris@0: * @file Chris@0: * Theme override for the node created field. Chris@0: * Chris@0: * This is an override of field.html.twig for the node created field. See that Chris@0: * template for documentation about its details and overrides. Chris@0: * Chris@0: * Available variables: Chris@0: * - attributes: HTML attributes for the containing span element. Chris@0: * - items: List of all the field items. Each item contains: Chris@0: * - attributes: List of HTML attributes for each item. Chris@0: * - content: The field item content. Chris@0: * - entity_type: The entity type to which the field belongs. Chris@0: * - field_name: The name of the field. Chris@0: * - field_type: The type of the field. Chris@0: * - label_display: The display settings for the label. Chris@0: * Chris@0: * @see field.html.twig Chris@0: */ Chris@0: #} Chris@0: {% Chris@0: set classes = [ Chris@0: 'field', Chris@0: 'field--name-' ~ field_name|clean_class, Chris@0: 'field--type-' ~ field_type|clean_class, Chris@0: 'field--label-' ~ label_display, Chris@0: ] Chris@0: %} Chris@0: Chris@0: {%- for item in items -%} Chris@0: {{ item.content }} Chris@0: {%- endfor -%} Chris@0: