<li> <a href="{{ path('app_shared_cart_index') }}" class="mobile-cart-link"> <span class="btn btn_cart"><i class="fa fa-shopping-cart"></i></span> {% set cart = app.session.get('cart') %} {% if cart is not null and cart['products'] is defined %} {% set cart_count = cart['products'] | length %} {% else %} {% set cart_count = 0 %} {% endif %} <span class="number_cart">{{ cart_count }}</span> </a></li>