diff --git a/assets/sass/accueil.scss b/assets/sass/accueil.scss index 49c4075..d214bc1 100644 --- a/assets/sass/accueil.scss +++ b/assets/sass/accueil.scss @@ -25,6 +25,10 @@ } .passe-ton-permis { + a { + text-decoration: none; + } + .conteneur-titre { max-width: $petite-largeur; padding-top: 2rem; diff --git a/assets/sass/main.scss b/assets/sass/main.scss index f920675..e311b5a 100644 --- a/assets/sass/main.scss +++ b/assets/sass/main.scss @@ -54,13 +54,12 @@ section { } } -nav { +nav, footer { max-width: $largeur; margin: 0 auto; ul { display: flex; gap: 1rem; - list-style: none; padding: 1rem; margin: 0; @@ -79,6 +78,13 @@ nav { } } +footer { + display: flex; + justify-content: center; + border-top: solid 1px white; + margin-top: 1rem; +} + .couverture { h1 { font-family: Terminal-grotesque; diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 642de2f..3ec2a56 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -8,5 +8,6 @@ {{ partial "nav.html" }} {{ block "main" . }} {{ end }} + {{ partial "pied.html" }} diff --git a/layouts/index.html b/layouts/index.html index 126cbb8..1ac434c 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -11,7 +11,7 @@
-

PASSE TON PERMIS DE
- CYBERPRUDENCE -

+

PASSE TON PERMIS DE
- CYBERPRUDENCE -

{{ partial "symbole" (dict "symbole" "internet") }} diff --git a/layouts/partials/pied.html b/layouts/partials/pied.html new file mode 100644 index 0000000..bd2a37f --- /dev/null +++ b/layouts/partials/pied.html @@ -0,0 +1,7 @@ + \ No newline at end of file