Ajout des mentions legales
Inspiration : - https://anemon.co/mentions-legales/ - https://www.cap-services.coop/mentions-legales/ - https://lafrenchtech.com/fr/mentions-legales/
This commit is contained in:
parent
ca30d11b4f
commit
298c753b24
|
@ -39,3 +39,11 @@ h6 {
|
||||||
font-variation-settings: 'wght' 600.0;
|
font-variation-settings: 'wght' 600.0;
|
||||||
color: var(--yellow);
|
color: var(--yellow);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.height-title {
|
||||||
|
min-height: 50vh;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-content: center;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
|
@ -26,4 +26,4 @@ menu:
|
||||||
|
|
||||||
# Texte en bas de page
|
# Texte en bas de page
|
||||||
copyright: >-
|
copyright: >-
|
||||||
Copyright © 2022
|
Copyright © 2022 - [Mentions Légales](/mentions-legales/)
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
---
|
||||||
|
title: Mentions Légales
|
||||||
|
date: 2022-09-13
|
||||||
|
---
|
||||||
|
|
||||||
|
## Éditeur
|
||||||
|
|
||||||
|
Le site WEB https://jarnat.fr est édité par :
|
||||||
|
XXX
|
||||||
|
Immatriculée
|
||||||
|
|
||||||
|
## Directeur de publication
|
||||||
|
|
||||||
|
xxx
|
||||||
|
|
||||||
|
## Hébergement
|
||||||
|
|
||||||
|
Le site WEB https://jarnat.fr est hébergé avec sobriété par [RésiLien](https://resilien.fr) une marque de la Coopérative d'Activité et d'Emploi [CAP Services](https://www.cap-services.coop/).
|
||||||
|
11 rue Duphot, 69003 Lyon
|
||||||
|
04.72.84.60.50
|
||||||
|
|
||||||
|
## Développement et Maintenance
|
||||||
|
|
||||||
|
Le site WEB https://jarnat.fr a été réalisé de façon éco-responsable par [Weko](https://weko.io), pour un numérique responsable de proximité, une marque de la Coopérative d'Activité et d'Emploi [CAP Services](https://www.cap-services.coop/).
|
||||||
|
11 rue Duphot, 69003 Lyon
|
||||||
|
04.72.84.60.50
|
||||||
|
|
||||||
|
## Liens hypertextes
|
||||||
|
|
||||||
|
Les liens hypertextes mis en œuvre en direction d’autres sites WEB ne sauraient engager la responsabilité de Jarnat, car nous n’exerçons aucun contrôle sur le contenu des sites auxquels ces liens renvoient.
|
||||||
|
|
||||||
|
## Cookie
|
||||||
|
|
||||||
|
Ce site n'installe aucun cookie, c'est pourquoi il n'y a aucun bandeau spécifique. Nous respectons la vie privée de nos visiteurs.
|
|
@ -8,12 +8,12 @@ Tags: one-page, single-page, portfolio, custom-colors, post-formats, responsive,
|
||||||
*/
|
*/
|
||||||
/*=== MEDIA QUERY ===*/
|
/*=== MEDIA QUERY ===*/
|
||||||
html {
|
html {
|
||||||
background-color: #353b43;
|
background-color: var(--green);
|
||||||
color: #737f8a;
|
color: #737f8a;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #353b43;
|
background-color: var(--green);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,13 +5,19 @@
|
||||||
<section class="section">
|
<section class="section">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-8 offset-lg-2 text-center">
|
<div class="col-lg-8 offset-lg-2 text-center height-title">
|
||||||
<h1>{{ .Title }}</h1>
|
<h1>{{ .Title }}</h1>
|
||||||
<ul class="list-inline mb-50">
|
<ul class="list-inline mb-50">
|
||||||
|
{{ if .Params.Author }}
|
||||||
<li class="list-inline-item"><a href="{{ `author/` | relLangURL }}{{ .Params.Author | urlize }}/">{{ .Params.Author }}</a></li>
|
<li class="list-inline-item"><a href="{{ `author/` | relLangURL }}{{ .Params.Author | urlize }}/">{{ .Params.Author }}</a></li>
|
||||||
<li class="list-inline-item">{{ dateFormat "Monday, Jan 2, 2006" .Date }}</li>
|
{{ end }}
|
||||||
|
{{ if .Date }}
|
||||||
|
<li class="list-inline-item">Dernière modification :<br> {{ .Date | time.Format ":date_full" }}</li>
|
||||||
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
|
{{ if .Params.Image }}
|
||||||
<img class="img-fluid mb-50 lozad" data-src="{{ .Params.Image | absURL }}" alt="blog-image">
|
<img class="img-fluid mb-50 lozad" data-src="{{ .Params.Image | absURL }}" alt="blog-image">
|
||||||
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-8 offset-lg-2">
|
<div class="col-lg-8 offset-lg-2">
|
||||||
<div class="post-single-content">
|
<div class="post-single-content">
|
||||||
|
|
Loading…
Reference in New Issue