Advertisement
Guest User

Untitled

a guest
May 9th, 2019
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. {**
  2. * 2007-2019 PrestaShop
  3. *
  4. * NOTICE OF LICENSE
  5. *
  6. * This source file is subject to the Academic Free License 3.0 (AFL-3.0)
  7. * that is bundled with this package in the file LICENSE.txt.
  8. * It is also available through the world-wide-web at this URL:
  9. * https://opensource.org/licenses/AFL-3.0
  10. * If you did not receive a copy of the license and are unable to
  11. * obtain it through the world-wide-web, please send an email
  12. * to license@prestashop.com so we can send you a copy immediately.
  13. *
  14. * DISCLAIMER
  15. *
  16. * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
  17. * versions in the future. If you wish to customize PrestaShop for your
  18. * needs please refer to http://www.prestashop.com for more information.
  19. *
  20. * @author PrestaShop SA <contact@prestashop.com>
  21. * @copyright 2007-2019 PrestaShop SA
  22. * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
  23. * International Registered Trademark & Property of PrestaShop SA
  24. *}
  25. <div id="js-product-list">
  26. <div class="products product-thumbs row">
  27. {foreach from=$listing.products item="product"}
  28. {block name='product_miniature'}
  29. {include file='catalog/_partials/miniatures/product.tpl' product=$product}
  30. {/block}
  31. {/foreach}
  32. </div>
  33.  
  34. {block name='pagination'}
  35. {include file='_partials/pagination.tpl' pagination=$listing.pagination}
  36. {/block}
  37.  
  38. <div class="hidden-md-up text-xsright up">
  39. <a href="#header" class="btn btn-secondary">
  40. {l s='Back to top' d='Shop.Theme.Actions'}
  41. <i class="material-icons">&#xE316;</i>
  42. </a>
  43. </div>
  44. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement