2025-11-04

This commit is contained in:
gcch 2025-11-04 13:21:41 +01:00
commit 66397de267
101 changed files with 2573 additions and 58 deletions

View file

@ -20,6 +20,7 @@
<img
alt=""
height="56"
role="presentation"
src="{{ site.theme.link }}/assets/img/icons/aboutlclick-black.svg"
width="82"
>
@ -34,6 +35,7 @@
<img
alt=""
height="56"
role="presentation"
src="{{ site.theme.link }}/assets/img/icons/aboutlclick-black.svg"
width="82"
>
@ -48,6 +50,7 @@
<img
alt=""
height="56"
role="presentation"
src="{{ site.theme.link }}/assets/img/icons/aboutlclick-black.svg"
width="82"
>
@ -62,6 +65,7 @@
<img
alt=""
height="56"
role="presentation"
src="{{ site.theme.link }}/assets/img/icons/aboutlclick-black.svg"
width="82"
>
@ -76,6 +80,7 @@
<img
alt=""
height="56"
role="presentation"
src="{{ site.theme.link }}/assets/img/icons/aboutlclick-black.svg"
width="82"
>
@ -90,6 +95,7 @@
<img
alt=""
height="56"
role="presentation"
src="{{ site.theme.link }}/assets/img/icons/aboutlclick-black.svg"
width="82"
>
@ -107,6 +113,7 @@
<img
alt="An icon in form of a cross"
height="20"
role="presentation"
src="{{ site.theme.link }}/assets/img/icons/cross.svg"
width="20"
>
@ -131,6 +138,7 @@
<img
alt="An icon in form of a cross"
height="20"
role="presentation"
src="{{ site.theme.link }}/assets/img/icons/cross.svg"
width="20"
>
@ -157,6 +165,7 @@
<img
alt="An icon in form of a cross"
height="20"
role="presentation"
src="{{ site.theme.link }}/assets/img/icons/cross.svg"
width="20"
>
@ -184,6 +193,7 @@
<img
alt="An icon in form of a cross"
height="20"
role="presentation"
src="{{ site.theme.link }}/assets/img/icons/cross.svg"
width="20"
>
@ -210,6 +220,7 @@
<img
alt="An icon in form of a cross"
height="20"
role="presentation"
src="{{ site.theme.link }}/assets/img/icons/cross.svg"
width="20"
>
@ -240,6 +251,7 @@
<img
alt="An icon in form of a cross"
height="20"
role="presentation"
src="{{ site.theme.link }}/assets/img/icons/cross.svg"
width="20"
>

View file

@ -15,6 +15,7 @@
{# Animation #}
<div class="storytelling__animation no-js">
<svg
alt=""
class="animation-conteneur"
height="90px"
preserveAspectRatio="xMidYMin"
@ -23,6 +24,7 @@
xmlns="http://www.w3.org/2000/svg"
>
<svg
alt="Scroll down"
class="animation-texte"
height="100%"
width="100%"

View file

@ -5,8 +5,10 @@
id="menu-categories-produits"
>
<svg
alt=""
height="15"
id="fleche-defilement-categories-produits-gauche"
role="presentation"
transform="scale(-1 1)"
viewBox="0 0 15 15"
width="15"
@ -30,8 +32,10 @@
{% endfor %}
</ul>
<svg
alt=""
height="15"
id="fleche-defilement-categories-produits-droite"
role="presentation"
viewBox="0 0 15 15"
width="15"
xmlns="http://www.w3.org/2000/svg"

View file

@ -2,7 +2,7 @@
{% for produit in produits_meme_collection %}
{# TODO: Trouver une meilleure arborescence et des noms de classe #}
<article class="produit">
<figure>
<figure role="figure">
<a href="{{ produit.url }}">
<picture class="produit__illustration produit__illustration__principale">
{{ produit.photo_repos }}

View file

@ -4,7 +4,10 @@
class="colonne colonne-gauche"
>
{% for photo in produit.photos_colonne_gauche %}
<figure data-index="0">
<figure
data-index="0"
role="figure"
>
<picture>
{{ photo }}
</picture>
@ -17,7 +20,10 @@
class="colonne colonne-droite"
>
{% for photo in produit.photos_colonne_droite %}
<figure data-index="{{ loop.index }}">
<figure
data-index="{{ loop.index }}"
role="figure"
>
<picture>
{{ photo }}
</picture>

View file

@ -7,7 +7,7 @@
{% for produit in produits %}
{# TODO: Trouver une meilleure arborescence et des noms de classe #}
<article class="produit">
<figure>
<figure role="figure">
<a href="{{ produit.url }}">
<picture class="produit__illustration produit__illustration__principale">
{{ produit.photo_repos }}