<li class="ce-mobile dropdown{% if args[0] == 'checkout' %} visible-xs{% endif %}">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><i class="fa fa-bars"> </i>{{ labels.get('mobile-static-menu-4')|raw }} <span class="caret"></span></a>
{% if menu|length %}
<ul class="dropdown-menu dropdown-menu-right">
<li>
<div class="m-top-cats">
<ul>
{% for cat in menu %}
<li>
<a href="{{ path('prod_list_cat', {'cat_id': cat.id, 'cat_intname': cat.intname}) }}">
<img src="{{ asset('catpic/' ~ cat.id ~ '.svg', 'pic') }}" height="20" alt="" class="iacat">
<img src="{{ asset('catpic/' ~ cat.id ~ 'a' ~ (env.is_opt ? 'opt' : '') ~'.svg', 'pic') }}" height="20" alt="" class="acat"> {{ cat.name |raw }}
</a>
{% if cat.subcats|length %}
<ul class="m-top-cats-sub">
{% for subcat in cat.subcats %}
<li><a href="{{ path('prod_list_cat', {'cat_id': subcat.id, 'cat_intname': subcat.intname}) }}">{{ subcat.name |raw }}</a></li>
{% endfor %}
</ul>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
</li>
</ul>
{% endif %}
</li>