{#
This file is part of EC-CUBE
Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
http://www.ec-cube.co.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
{% if is_granted('ROLE_USER') %}
<li class="icon">
<a href="{{ url('mypage') }}">
<i class="fa-regular fa-user size"></i>
</a>
</li>
{% if BaseInfo.option_favorite_product %}
<li class="icon">
<a href="{{ url('mypage_favorite') }}">
<i class="fa-solid fa-heart size"></i>
</a>
</li>
{% endif %}
<li class="icon">
<a href="{{ url('logout') }}">
<i class="fa-solid fa-sign-out size"></i>
</a>
</li>
{% else %}
<li class="icon">
<a href="{{ url('entry') }}">
<i class="fa-regular fa-user size"></i>
</a>
</li>
{% if BaseInfo.option_favorite_product %}
<li class="icon">
<a href="{{ url('mypage_favorite') }}">
<i class="fa-solid fa-heart size"></i>
</a>
</li>
{% endif %}
<li class="icon">
<a href="{{ url('mypage_login') }}">
<i class="fa-solid fa-lock size"></i>
</a>
</li>
{% endif %}
<li class="icon">
<a href="{{ url('cart') }}">
<i class="fa-solid fa-cart-shopping size"></i>
</a>
</li>