{% extends '@nucleus/partials/particle.html.twig' %} {% block particle %}
{% if particle.title %}

{{ particle.title|raw }}

{% endif %} {% if particle.items %}
{% for item in particle.items %}
{% if item.image %}
{{ item.title|e }}
{% endif %}
{% if item.label %}
{{ item.label|e }}
{% endif %} {% if item.tags %}
{% for tag in item.tags %} {% if tag.icon %} {% endif %} {{ tag.text|raw }} {% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}