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

Open in your IDE?
  1. {% set listenosservices = app_get_section_footer('myservices_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_services'|trans }}</span></div>
  5.         <ul class="toggle-m-c">
  6.             {% for item in listenosservices %}
  7.                 <li><a href="/page/{{ item.slug }}" title = "{{ item.name }}">  {{ item.name }} </a> </li>
  8.             {% endfor %}
  9.             <li><a href="{{ path('bitbag_sylius_cms_plugin_shop_frequently_asked_question_index') }}" title="{{'app.footer.faq_full'|trans}}">{{'app.footer.faq_full'|trans}}</a></li>
  10.             <li><a href="{{ path('sylius_shop_contact_request') }}" title="{{ 'sylius.ui.contact_us'|trans }}"> {{ 'sylius.ui.contact_us'|trans }}</a></li>
  11.             <li><a href="#" onclick="return false;" class="cookie-management" title="{{ 'app.cookie.cookies_management'|trans }}"> {{ 'app.cookie.cookies_management'|trans }}</a></li>
  12.         </ul>
  13.     </div>
  14. </div>