{% 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 attr_extra_left = '' %} {% if particle.extra_left %} {% for attributes in particle.extra_left %} {% for key, value in attributes %} {% set attr_extra_left = attr_extra_left ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %} {% endfor %} {% endfor %} {% endif %} {% set attr_extra_right = '' %} {% if particle.extra_right %} {% for attributes in particle.extra_right %} {% for key, value in attributes %} {% set attr_extra_right = attr_extra_right ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %} {% endfor %} {% endfor %} {% endif %} {% set textcontent %} {% if particle.title %} {% endif %} {% if particle.description %} {% endif %} {% if particle.link %} {%- if particle.buttonicon -%} {%- endif -%} {{- particle.buttontext|raw -}} {% endif %} {% endset %} {% set galleryid = random() %} {% set gallerycontent %}
{% for row in particle.items|batch(particle.columns|default('3')|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 %} {% if item.image %} {% endif %} {% endfor %} {% endfor %}
{% endset %} {% block particle %} {% endblock %}