{% set block = app_get_blocks('texteperso_footer', sylius.channel.code ) %}
{% set sectionFooter = app_get_section_footer('footer', sylius.localeCode, sylius.channel.code) %}
<div class="text-opti text-center">
<div class="py-2 bg-blue-site2 mb-2">
<div class="container p-lg-0">
<ul class="d-flex justify-content-center">
{% for item in sectionFooter %}
<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>
{% endfor %}
</ul>
</div>
</div>
<div class="container p-0">
{% if block is not null %}
{% if block.content is defined %}
{{ block.content|raw }}
{% endif %}
{% endif %}
</div>
</div>
<div class="copyright">
<div class="container p-lg-0">
<div class="logo-footer text-center pi-padding-top-bottom-10">
{% set logo = app_get_media('logo_footer') %}
{% if logo %}
<img class="" src="{{ logo.path }}" alt="{{ sylius.channel.name }}" style="max-width: 300px;"/>
{% else %}
<img src="{{ asset('images/logo_footer.png')}}" alt="" />
{% endif %}
</div>
<div class="copy-text">{{'app.footer.copyright'|trans}} {{ sylius.channel.hostname }}</div>
<div>{{'app.footer.siterealise_par'|trans}} <a href="https://arobases.fr/" title="Arobases" target="_blank">{{'app.footer.lasolution_arobases'|trans}}</a></div>
</div>
</div>
{#</footer>#}