openchurch_theme-3.0.0-alpha3/templates/field/field--node--field-tags--article.html.twig
templates/field/field--node--field-tags--article.html.twig
{#
/**
* @file
* Bartik theme override for taxonomy 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()
* @see bartik_preprocess_field()
*/
#}
<div class="pt-3">
{% if not label_hidden %}
<h3 class="mb-3">{{ label }}</h3>
{% endif %}
<ul class='links list-inline'>
{% for item in items %}
<li{ class="list-inline-item"><a href="{{ blog_path_path }}/{{ item.content['#options'].entity.id() }}" class="badge rounded-pill bg-primary p-2 text-white">{{ item.content['#title'] }}</a></li>
{% endfor %}
</ul>
</div>
