{# /** * @file * Default theme implementation for a field. * * Available variables: * - attributes: HTML attributes for the containing element. * - label_hidden: Whether to show the field label or not. * - title_attributes: HTML attributes for the title. * - label: The label for the field. * - multiple: TRUE if a field can contain multiple items. * - items: List of all the field items. Each item contains: * - attributes: List of HTML attributes for each item. * - content: The field item's content. * - entity_type: The entity type to which the field belongs. * - field_name: The name of the field. * - field_type: The type of the field. * - label_display: The display settings for the label. * * @see template_preprocess_field() * * @ingroup themeable */ #} {% set title_classes = [ 'field', 'field--name-' ~ field_name|clean_class, 'field--type-' ~ field_type|clean_class, 'field--label-' ~ label_display, label_display == 'visually_hidden' ? 'visually-hidden', ] %} {# Set anchor href using paragraph ID #} {% set ancre_href = '/' %} {# Define the SVG icon #} {% set svg_icon %} {% endset %} {% if not label_hidden %} {{ label }} {% endif %} {% for item in items %} {{ svg_icon|raw }} {# {{ item.content }} #} {% endfor %}