{#
component: footer-corporate
title {string}: Titre
to {string}: Lien
#}
{% set props = {
links:[{
title:"CGV",
to:"#"
},{
title:"Mentions légales",
to:"#"
},{
title:"RGPD",
to:"#"
},{
title:"Presse",
to:"#"
},{
title:"Plan du site",
to:"#"
},]
}|merge(props|default({})) %}
<div data-component="footer-corporate" class="FooterCorporate-component">
<div class="l-container">
<div class="l-row">
<div class="l-column FooterCorporate-main">
{# Links #}
<ul class="FooterCorporate-linksList">
{% for link in props.links %}
<li class="FooterCorporate-linkItem">
<a href="{{ link.to }}" class="FooterCorporate-link" target="{{link.target}}">{{ link.title }}</a>
</li>
{% endfor %}
</ul>
{# Logos #}
<div class="FooterCorporate-banks">
<div class="FooterCorporate-bank">
{% include "component/svg.html.twig" with {
props: {
name: 'mastercard'
}
} %}
</div>
<div class="FooterCorporate-bank">
{% include "component/svg.html.twig" with {
props: {
name: 'visa'
}
} %}
</div>
</div>
</div>
</div>
</div>
</div>