| Server IP : 104.21.84.107 / Your IP : 104.23.197.208 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/licenciatura-es-in/media/gantry5/engines/nucleus/particles/ |
Upload File : |
{% extends '@nucleus/partials/particle.html.twig' %}
{% if particle.target %}
{% set targetAttrib = ' target="' ~ particle.target|e ~ '"' %}
{% set targetAttrib = (particle.target == '_blank') ? targetAttrib ~ ' rel="noopener noreferrer"' : targetAttrib %}
{% endif %}
{% block particle %}
{% if particle.title %}<h2 class="g-title">{{ particle.title|raw }}</h2>{% endif %}
<div class="g-social {{ particle.css.class }}">
{% for item in particle.items %}
{% set title = (item.title is not empty) ? item.title|e : item.text|e %}
{% set titleAttrib = (title is not empty) ? ' title="' ~ title ~ '" aria-label="' ~ title ~ '"' : '' %}
<a href="{{ item.link|e }}"{{ targetAttrib|raw }}{{ titleAttrib|raw }}>
{% if particle.display in ['both', 'icons_only'] %}<span class="{{ item.icon|e }}"></span>{% endif %}
{% if particle.display in ['both', 'text_only'] %}<span class="g-social-text">{{ item.text|e }}</span>{% endif %}
</a>
{% endfor %}
</div>
{% endblock %}