{% extends '@nucleus/partials/particle.html.twig' %}
{% block stylesheets %}
{% if (particle.enabled) %}
{% for css in particle.css %}
{% set attr_extra = '' %}
{% if css.extra %}
{% for attributes in css.extra %}
{% for key, value in attributes %}
{% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
{% endfor %}
{% endfor %}
{% endif %}
{% if css.location %}
{% endif %}
{% if css.inline %}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}
{% block javascript %}
{% if particle.enabled %}
{% for script in particle.javascript %}
{% if script.in_footer == false %}
{% set attr_extra = '' %}
{% if script.extra %}
{% for attributes in script.extra %}
{% for key, value in attributes %}
{% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
{% endfor %}
{% endfor %}
{% endif %}
{% if script.location %}
{% endif %}
{% if script.inline %}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}
{% block javascript_footer %}
{% if particle.enabled %}
{% for script in particle.javascript %}
{% if script.in_footer == true %}
{% set attr_extra = '' %}
{% if script.extra %}
{% for attributes in script.extra %}
{% for key, value in attributes %}
{% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
{% endfor %}
{% endfor %}
{% endif %}
{% if script.location %}
{% endif %}
{% if script.inline %}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}