Applies new styling to the header, shopping cart, and search bar components. Creates new scss files for header and swiper layouts. Replaces x.svg. These changes create a more consistent and modern user interface.
25 lines
936 B
Smarty
25 lines
936 B
Smarty
<div class="footer-bottom py-3">
|
|
<div class="container d-flex justify-content-between align-items-center">
|
|
<div class="copyright">
|
|
<span>
|
|
{l
|
|
s='Copyright © %year% %shop%'
|
|
sprintf=['%year%' => $smarty.now|date_format:"%Y", '%shop%' => $shop.name|capitalize]
|
|
d='Shop.Theme.Footer'
|
|
}
|
|
</span>
|
|
</div>
|
|
<a href="https://dewebsmid.nl/prestashop/" rel="noopener" target="_blank">
|
|
{l s='PrestaShop' d='Shop.Theme.Footer'}
|
|
</a>
|
|
<div class="privacy">
|
|
<a href="content/3-gebruiks-voorwaarden">
|
|
{l s='Terms & Conditions' d='Shop.Theme.Footer'}
|
|
</a>
|
|
<span class="mx-2"> | </span>
|
|
<a href="content/1-levering">
|
|
{l s='Privacy policy' d='Shop.Theme.Footer'}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div> |