forked from brooksbingham/theme-elegance
62 lines
2.6 KiB
Smarty
62 lines
2.6 KiB
Smarty
{**
|
|
* 2007-2019 PrestaShop and Contributors
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Academic Free License 3.0 (AFL-3.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* https://opensource.org/licenses/AFL-3.0
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to https://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2019 PrestaShop SA and Contributors
|
|
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*}
|
|
|
|
{*Mobile View*}
|
|
<div class="flex flex-wrap flex-1 flex-col md:flex-row th-accordion">
|
|
{foreach $linkBlocks as $linkBlock}
|
|
<div class="flex md:hidden flex-col mb-4 md:w-1/3 th-accordion-item">
|
|
<div class="font-bold flex gap-2 items-center mb-4 th-accordion-item-trigger">
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="icon th-accordion-item-trigger-svg icon-tabler stroke-[3px] icon-tabler-chevron-right" width="20" height="20" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 6l6 6l-6 6" /></svg>
|
|
{$linkBlock.title}
|
|
</div>
|
|
<ul class="flex flex-col th-accordion-item-content pl-6">
|
|
{foreach $linkBlock.links as $link}
|
|
<li class="flex">
|
|
<a id="{$link.id}-{$linkBlock.id}" class="text-sm font-normal leading-6 {$link.class}" href="{$link.url}" title="{$link.description}" {if !empty($link.target)} target="{$link.target}" {/if}>
|
|
{$link.title}
|
|
</a>
|
|
</li>
|
|
{/foreach}
|
|
</ul>
|
|
</div>
|
|
|
|
{*Desktop View*}
|
|
<div class="flex max-md:hidden flex-col mb-4 md:w-1/3">
|
|
<div class="font-bold mb-4">
|
|
{$linkBlock.title}
|
|
</div>
|
|
<ul class="flex flex-col">
|
|
{foreach $linkBlock.links as $link}
|
|
<li class="flex">
|
|
<a id="{$link.id}-{$linkBlock.id}" class="text-sm font-normal leading-6 {$link.class}" href="{$link.url}" title="{$link.description}" {if !empty($link.target)} target="{$link.target}" {/if}>
|
|
{$link.title}
|
|
</a>
|
|
</li>
|
|
{/foreach}
|
|
</ul>
|
|
</div>
|
|
{/foreach}
|
|
</div>
|