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

Open in your IDE?
  1. {% set listeNousConnaitre = app_get_section_footer('nous_connaitre', sylius.localeCode, sylius.channel.code  )  %}
  2. {% set sectionName = getSectionFooterName('nous_connaitre', sylius.localeCode )  %}
  3. <!-- section nous connaĆ®tre -->
  4. <div class="other-menu-bit">
  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 listeNousConnaitre %}
  9.                 <li><a href="/page/{{ item.slug }}" title = "{{ item.name }}"> {{ item.name }} </a> </li>
  10.             {% endfor %}
  11.         </ul>
  12.     </div>
  13. </div>