templates/bundles/SyliusShopBundle/Product/index.html.twig line 1

  1. {% extends nglayouts.layoutTemplate %}
  2. {% block title %}
  3.     {{'app.ui.shop'|trans}}
  4. {% endblock %}
  5. {% block post_header %}
  6.     {{ render(path('bitbag_sylius_cms_plugin_shop_media_render', {'code' : 'shop_post_header', 'template' : 'frontend/cms/common/media/_header.html.twig'})) }}
  7. {% endblock %}
  8. {% block body %}
  9.     <section class="featured-products">
  10.     <div class="auto-container">
  11.         <div class="row clearfix">
  12.             <div class="col-lg-3 col-md-12 col-sm-12">
  13.                 {% include '@SyliusShop/Product/Index/_sidebar.html.twig' %}
  14.             </div>
  15.             <div class="col-lg-9 col-md-12 col-sm-12 content-side">
  16.                 {% include '@SyliusShop/Product/Index/_main.html.twig' %}
  17.             </div>
  18.         </div>
  19.     </div>
  20. </section> 
  21. {% endblock %}