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.
32 lines
1.1 KiB
32 lines
1.1 KiB
{# |
|
/** |
|
* @file |
|
* Theme override for term fields. |
|
* |
|
* 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 label. |
|
* - label: The label for the field. |
|
* - content_attributes: HTML attributes for the content. |
|
* - 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() |
|
*/ |
|
#} |
|
<div class="node-taxonomy-container"> |
|
{% if not label_hidden %} |
|
<h3{{ title_attributes.addClass('term-title') }}>{{ label }}</h3> |
|
{% endif %} |
|
<ul class="taxonomy-terms"> |
|
{% for item in items %} |
|
<li{{ item.attributes.addClass('taxonomy-term') }}>{{ item.content }}</li> |
|
{% endfor %} |
|
</ul> |
|
</div> <!--/.node-taxonomy-container -->
|
|
|