Advertisement
Guest User

Untitled

a guest
May 9th, 2019
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 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. {extends file=$layout}
  26.  
  27. {block name='content'}
  28. <section id="main">
  29. <input id="carttoken" name="carttoken" value="{$urls.pages.cart}" type="hidden">
  30. <input id="tokenid" name="tokenid" value="{$static_token}" type="hidden">
  31.  
  32. {block name='product_list_header'}
  33. <h2 id="js-product-list-header" class="h2 tt-innerpagetitle">{$listing.label}</h2>
  34. {/block}
  35.  
  36. <section id="products">
  37. {if $listing.products|count}
  38.  
  39. <div id="">
  40. {block name='product_list_top'}
  41. {include file='catalog/_partials/products-top.tpl' listing=$listing}
  42. {/block}
  43. </div>
  44.  
  45. {block name='product_list_active_filters'}
  46. <div id="" class="hidden-sm-down">
  47. {$listing.rendered_active_filters nofilter}
  48. </div>
  49. {/block}
  50.  
  51. <div id="">
  52. {block name='product_list'}
  53. {include file='catalog/_partials/products.tpl' listing=$listing}
  54. {/block}
  55. </div>
  56.  
  57. <div id="js-product-list-bottom">
  58. {block name='product_list_bottom'}
  59. {include file='catalog/_partials/products-bottom.tpl' listing=$listing}
  60. {/block}
  61. </div>
  62.  
  63. {else}
  64.  
  65. {include file='errors/not-found.tpl'}
  66.  
  67. {/if}
  68. </section>
  69.  
  70. </section>
  71. {/block}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement