Rajout du module "Cookie RGPD" + ajout des liens vers réseaux sociaux dans Footer

This commit is contained in:
2020-11-06 18:44:42 +01:00
parent dd8f79a483
commit 5a1abbe325
12 changed files with 238 additions and 40 deletions

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="40px" height="40px" viewBox="0 0 40 40" enable-background="new 0 0 40 40" xml:space="preserve">
<g>
<image overflow="visible" opacity="0.1" width="42" height="42" xlink:href="970B07D0.png" >
</image>
<g>
<path fill="#FFFFFF" d="M5.9,30.4c0-1,0.4-1.9,1.1-2.7c0.7-0.7,1.6-1.1,2.7-1.1s1.9,0.4,2.7,1.1c0.7,0.7,1.1,1.6,1.1,2.7
c0,1.1-0.4,2-1.1,2.7s-1.6,1.1-2.7,1.1S7.8,33.8,7,33.1C6.3,32.3,5.9,31.4,5.9,30.4z M5.9,20.9v-5.4c3.4,0,6.5,0.8,9.4,2.5
s5.2,4,6.8,6.8c1.7,2.9,2.5,6,2.5,9.4h-5.5c0-3.7-1.3-6.8-3.9-9.4C12.7,22.2,9.6,20.9,5.9,20.9z M5.9,11.2V5.8
c3.8,0,7.5,0.8,11,2.3s6.5,3.5,9.1,6.1s4.6,5.6,6.1,9.1c1.5,3.5,2.3,7.2,2.3,11h-5.5c0-3.1-0.6-6.1-1.8-8.9
c-1.2-2.8-2.8-5.3-4.9-7.3s-4.5-3.7-7.3-4.9S9,11.2,5.9,11.2z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1020 B

View File

@@ -153,7 +153,16 @@ a:hover {
color: white;
}
#footer > div.footer-container div.block-social.md-3 > p {
text-align: left;
}
.block-social ul li {
background-color: black;
}
#footer div.block-social.md-3 li.linkedin {
background-image: url("../css/cf2f3c1d5c7cb02c29f61964313148e1.svg");
}
/**********************************************************/

View File

@@ -0,0 +1,34 @@
<div class="col-md-3 links">
<div class="row">
{foreach $linkBlocks as $linkBlock}
<div class="col-md-6 wrapper">
<p class="h3 hidden-sm-down">{$linkBlock.title}</p>
{assign var=_expand_id value=10|mt_rand:100000}
<div class="title clearfix hidden-md-up" data-target="#footer_sub_menu_{$_expand_id}" data-toggle="collapse">
<span class="h3">{$linkBlock.title}</span>
<span class="float-xs-right">
<span class="navbar-toggler collapse-icons">
<i class="material-icons add">&#xE313;</i>
<i class="material-icons remove">&#xE316;</i>
</span>
</span>
</div>
<ul id="footer_sub_menu_{$_expand_id}" class="collapse">
{foreach $linkBlock.links as $link}
<li>
<a
id="{$link.id}-{$linkBlock.id}"
class="{$link.class}"
href="{$link.url}"
title="{$link.description}"
{if !empty($link.target)} target="{$link.target}" {/if}
>
{$link.title}
</a>
</li>
{/foreach}
</ul>
</div>
{/foreach}
</div>
</div>

View File

@@ -0,0 +1,10 @@
{block name='block_social'}
<div class="block-social md-3">
<p class="h3 hidden-sm-down">Nous suivre sur les réseaux sociaux</p>
<ul>
{foreach from=$social_links item='social_link'}
<li class="{$social_link.class}"><a href="{$social_link.url}" target="_blank">{$social_link.label}</a></li>
{/foreach}
</ul>
</div>
{/block}

View File

@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="40px" height="40px" viewBox="0 0 40 40" enable-background="new 0 0 40 40" xml:space="preserve">

Before

Width:  |  Height:  |  Size: 901 B

After

Width:  |  Height:  |  Size: 902 B