{% if SESSION.userData.group_id %}
{% set ual = SESSION.userData.group_id %}
{% else %}
{% set ual = 'guest' %}
{% endif %}
{% if mainmenu is empty %}
{% set mainmenu = 'inicio' %}
{% endif %}
{% for L0 in categories %}
{% if ual in L0.access_level %}
{% if L0.pages is empty or (L0.pages is not empty and routename not in L0.pages) %}
{% set currentIn = false %}
{% for child in L0.children %}
{% if mainmenu in child.url %}
{% set currentIn = true %}
{% endif %}
{% endfor %}