| Server IP : 172.67.191.97 / Your IP : 104.23.197.209 Web Server : Apache/2.4.63 (Ubuntu) System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.4.5 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/pregrados/fonoaudiologia/media/gantry5/engines/nucleus/particles/ |
Upload File : |
{% spaceless %}
{% if (particle.enabled) %}
{% for css in particle.css %}
{% set params = {} %}
{% if css.extra %}
{% for attributes in css.extra %}
{% for key, value in attributes %}
{% set params = params|default({})|merge({(key): value}) %}
{% endfor %}
{% endfor %}
{% endif %}
{% if css.location %}
{% do gantry.document.addStyle(params|default({})|merge({href: css.location}), css.priority) %}
{% endif %}
{% if css.inline %}
{% do gantry.document.addInlineStyle(params|default({})|merge({content: css.inline}), css.priority) %}
{% endif %}
{% endfor %}
{% for script in particle.javascript %}
{% set params = {} %}
{% if script.extra %}
{% for attributes in script.extra %}
{% for key, value in attributes %}
{% set params = params|default({})|merge({(key): value}) %}
{% endfor %}
{% endfor %}
{% endif %}
{% if script.location %}
{% do gantry.document.addScript(params|default({})|merge({src: script.location}), script.priority, script.in_footer == true ? 'footer' : 'head') %}
{% endif %}
{% if script.inline %}
{% do gantry.document.addInlineScript(params|default({})|merge({content: script.inline}), script.priority, script.in_footer == true ? 'footer' : 'head') %}
{% endif %}
{% endfor %}
{% endif %}
{% endspaceless %}