Partenaires

This commit is contained in:
Pascal Engélibert 2023-04-19 15:40:47 +02:00
parent bacf1c75b4
commit 181a650191
Signed by: tuxmain
GPG key ID: 3504BC6D362F7DCA
8 changed files with 41 additions and 0 deletions

View file

@ -124,3 +124,33 @@ Librezo est un collectif décentralisé, né de la rencontre d'ami·es libristes
description = "Libriste, formé à la bidouille (résilience numérique, énergétique, domotique). Artisan laser numérique aujourd'hui, j'ai mis ces connaissances au service de mon entreprise Anuanua."
) }}
</div>
## Partenaires
<div class="partners nn">
{{ partner_box(
title = "Oasis21"
img = "/img/partners/oasis21.png"
url = "https://oasis21.org"
) }}
{{ partner_box(
title = "Pâquerette, informatique collaborative et responsable"
img = "/img/partners/paquerette.png"
url = "https://paquerette.fr"
) }}
{{ partner_box(
title = "WikiLibriste.fr"
img = "/img/partners/wikilibriste.jpg"
url = "https://wikilibriste.fr"
) }}
{{ partner_box(
title = "IGE, l'innovation sociale en commun"
img = "/img/partners/ige.png"
url = "https://infognueureka.fr"
) }}
{{ partner_box(
title = "Librecours"
img = "/img/partners/librecours-mini.png"
url = "https://librecours.net"
) }}
</div>

View file

@ -3,6 +3,7 @@
@import "clients";
@import "footer";
@import "header";
@import "partners";
@import "prices";
@import "process";
@import "services";

9
sass/css/partners.scss Normal file
View file

@ -0,0 +1,9 @@
.partners {
text-align: center;
}
.partner_box-img {
margin: 16px;
max-width: 256px;
max-height: 256px;
}

BIN
static/img/partners/ige.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View file

@ -0,0 +1 @@
<a class="partner_box-link" href="{{url|safe}}" title="{{title}}"><img class="partner_box-img" src="{{img|safe}}" alt="{{title}}"/></a>