You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.9 KiB
71 lines
1.9 KiB
12 months ago
|
{#
|
||
|
/**
|
||
|
* @file
|
||
|
* Olives's theme override for comment body 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()
|
||
|
*/
|
||
|
#}
|
||
|
{%
|
||
|
set classes = [
|
||
|
'field',
|
||
|
'field--name-' ~ field_name|clean_class,
|
||
|
'field--type-' ~ field_type|clean_class,
|
||
|
'field--label-' ~ label_display,
|
||
|
label_display == 'inline' ? 'clearfix',
|
||
|
]
|
||
|
%}
|
||
|
{%
|
||
|
set title_classes = [
|
||
|
'field__label',
|
||
|
label_display == 'visually_hidden' ? 'visually-hidden',
|
||
|
]
|
||
|
%}
|
||
|
{%
|
||
|
set item_classes = [
|
||
|
'field__item',
|
||
|
'comment__text-content',
|
||
|
]
|
||
|
%}
|
||
|
|
||
|
{% if label_hidden %}
|
||
|
{% if multiple %}
|
||
|
<div{{ attributes.addClass(classes, 'field__items') }}>
|
||
|
{% for item in items %}
|
||
|
<div{{ item.attributes.addClass(item_classes) }}>{{ item.content }}</div>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
{% else %}
|
||
|
{% for item in items %}
|
||
|
<div{{ attributes.addClass(classes, item_classes) }}>{{ item.content }}</div>
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
{% else %}
|
||
|
<div{{ attributes.addClass(classes) }}>
|
||
|
<div{{ title_attributes.addClass(title_classes) }}>{{ label }}</div>
|
||
|
{% if multiple %}
|
||
|
<div class="field__items">
|
||
|
{% endif %}
|
||
|
{% for item in items %}
|
||
|
<div{{ item.attributes.addClass(item_classes) }}>{{ item.content }}</div>
|
||
|
{% endfor %}
|
||
|
{% if multiple %}
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
{% endif %}
|