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

Open in your IDE?
  1. {% set block = app_get_blocks('texteperso_footer', sylius.channel.code )  %}
  2. {% set sectionFooter = app_get_section_footer('footer', sylius.localeCode, sylius.channel.code)  %}
  3.     <div class="text-opti text-center">
  4.         <div class="py-2 bg-blue-site2 mb-2">
  5.             <div class="container p-lg-0">
  6.                 <ul class="d-flex justify-content-center">
  7.                     {% for item in sectionFooter %}
  8.                         <li class="text-uppercase px-1 py-2"><a href="/page/{{ item.slug }}" title = "{{ item.name }}"> {{ item.name }} </a><span  class="px-1">-</span></li>
  9.                     {% endfor %}
  10.                 </ul>
  11.             </div>
  12.         </div>
  13.         <div class="container p-0">
  14.             {%  if block is not null %}
  15.                 {% if block.content is defined %}
  16.                     {{ block.content|raw }}
  17.                 {% endif %}
  18.             {%  endif  %}
  19.         </div>
  20.     </div>
  21.     <div class="copyright">
  22.         <div class="container p-lg-0">
  23.             <div class="logo-footer text-center pi-padding-top-bottom-10">
  24.                 {% set logo = app_get_media('logo_footer') %}
  25.                 {% if logo %}
  26.                     <img class="" src="{{ logo.path }}" alt="{{ sylius.channel.name }}" style="max-width: 300px;"/>
  27.                 {% else %}
  28.                     <img src="{{ asset('images/logo_footer.png')}}" alt="" />
  29.                 {% endif %}
  30.             </div>
  31.              <div class="copy-text">{{'app.footer.copyright'|trans}} {{ sylius.channel.hostname }}</div>
  32.             <div>{{'app.footer.siterealise_par'|trans}} <a href="https://arobases.fr/" title="Arobases" target="_blank">{{'app.footer.lasolution_arobases'|trans}}</a></div>
  33.         </div>
  34.     </div>
  35. {#</footer>#}