themes/BootstrapTheme/SyliusShopBundle/views/Layout/Footer/Grid/_your_store.html.twig line 1

Open in your IDE?
  1. {% set listeNosAvantages = app_get_section_footer('nos_avantages', sylius.localeCode, sylius.channel.code  )  %}
  2. {% set sectionName = getSectionFooterName('nos_avantages', sylius.localeCode )  %}
  3.     {# nos avantages #}
  4. <div class="other-menu-bit third-menu-footer">
  5.     <div class="menu-content">
  6.         <h4 class="titre-menu-t toggle-me"><span>{{sectionName }}</span></h4>
  7.         <ul class="toggle-m-c">
  8.             {% for item in listeNosAvantages %}
  9.                 <li><a href="/page/{{ item.slug }}" title = "{{ item.name }}"> {{ item.name }} </a> </li>
  10.             {% endfor %}
  11.         </ul>
  12.     </div>
  13. </div>