themes/BootstrapTheme/templates/bundles/SyliusShopBundle/Layout/Footer/Grid/_plus.html.twig line 1

Open in your IDE?
  1. {% set listemy_order = app_get_section_footer('myorder_footer', sylius.localeCode, sylius.channel.code  )  %}
  2. <div class="col-lg col-md-3 col-sm-6  px-lg-3 px-1">
  3.     <div class="menu-content">
  4.         <div class="title-menu-t toggle-me"><span>{{ 'app.footer.my_order'|trans }}</span></div>
  5.         <ul class="toggle-m-c">
  6.             {% for item in listemy_order %}
  7.                 <li><a href="/page/{{ item.slug }}" title = "{{ item.name }}">{{ item.name }} </a> </li> 
  8.             {% endfor %}
  9.         </ul>
  10.     </div>
  11. </div>