{% extends '@nucleus/partials/particle.html.twig' %} {% set attr_extra = '' %} {% if particle.extra %} {% for attributes in particle.extra %} {% for key, value in attributes %} {% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %} {% endfor %} {% endfor %} {% endif %} {% set particleheading %}
{% if particle.mainheading %}

{{ particle.mainheading|raw }}

{% endif %} {% if particle.introtext %}

{{ particle.introtext|raw }}

{% endif %}
{% endset %} {% block particle %}
{% if particle.mainheading or particle.introtext %} {{ particleheading }} {% endif %} {% for row in particle.items|batch(particle.columns|default('1')|e) %}
{% for item in row %} {% set attr_extra_item = '' %} {% for extra in item.extra %} {% set attr_extra_item = attr_extra_item ~ ' ' ~ extra|keys|first|e ~ '="' ~ extra|values|first|e('html_attr') ~ '"' %} {% endfor %} {% set toggleid = random() %}
{% if item.image %} {{ item.alt|e }} {% endif %}
{% if item.title %}

{%- if item.titlelink -%} {%- endif -%} {{- item.title|raw -}} {%- if item.titlelink -%} {%- endif -%}

{% endif %} {% if item.description %}
{{- item.description|raw -}}
{% endif %} {% if item.special1 %}
{{- item.special1|raw -}}
{% endif %} {% if item.special2 %}
{{- item.special2|raw -}} {%- if item.special2text -%} {%- endif -%} {{- item.special2text|raw -}} {%- if item.special2text -%} {%- endif -%}
{% endif %}
{% endfor %}
{% endfor %}
{% endblock %}