forked from brooksbingham/theme-elegance
refactor: show account-links in the footer
parent
e59b67fc1b
commit
245e0c93dd
|
@ -23,23 +23,20 @@
|
|||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*}
|
||||
|
||||
<div id="block_myaccount_infos" class="col-md-3 links wrapper">
|
||||
<p class="font-bold">
|
||||
<a class="text-uppercase" href="{$urls.pages.my_account}" rel="nofollow">
|
||||
{l s='Your account' d='Shop.Theme.Customeraccount'}
|
||||
</a>
|
||||
</p>
|
||||
<div class="title clearfix hidden-md-up" data-target="#footer_account_list" data-toggle="collapse">
|
||||
<span class="text-base">{l s='Your account' d='Shop.Theme.Customeraccount'}</span>
|
||||
<div id="block_myaccount_infos" class="flex flex-col gap-4">
|
||||
<div class="title clearfix" data-target="#footer_account_list" data-toggle="collapse">
|
||||
<span class="font-bold">{l s='Your account' d='Shop.Theme.Customeraccount'}</span>
|
||||
</div>
|
||||
<ul class="account-list collapse" id="footer_account_list">
|
||||
<ul class="account-list" id="footer_account_list">
|
||||
{foreach from=$my_account_urls item=my_account_url}
|
||||
<li>
|
||||
<a href="{$my_account_url.url}" title="{$my_account_url.title}" rel="nofollow">
|
||||
{$my_account_url.title}
|
||||
<li class="flex">
|
||||
<a href="{$my_account_url.url}" class="text-sm font-normal leading-6" title="{$my_account_url.title}" rel="nofollow">
|
||||
{$my_account_url["title"]}
|
||||
</a>
|
||||
</li>
|
||||
{/foreach}
|
||||
{hook h='displayMyAccountBlock'}
|
||||
<a href="{$logout_url}" class="text-sm font-normal leading-6" title="logout" rel="nofollow">
|
||||
Sign out
|
||||
</a>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue