You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
cosmopet-architecture/wp-content/themes/cosmopet/views/menu/mobile-menu.twig

24 lines
989 B

<div class="header__phone-menu">
{% for item in mobile_menu.items %}
<div class="header-phone-menu__item">
<a href="{{ item.link }}" {{ item.is_target_blank ? 'target="_blank"' }} class="header-phone-menu__title {{item.class}}">
{{ item.title }}
</a>
{% if item.children %}
{% for child in item.children %}
<a href="{{ child.link }}" class="header-phone-menu__category">{{ child.title }}</a>
{% if child.children %}
<ul class="header-phone-menu__list">
{% for sub_child in child.children %}
<li class="header-phone-menu__list-item">
<a href="{{sub_child.link}}">{{sub_child.title}}</a>
</li>
{% endfor %}
</ul>
{% endif %}
{% endfor %}
{% endif %}
</div>
{% endfor %}
</div>