- [x] Rédiger les mentions légales - [x] Rédiger la politique de confidentialité - [x] Vérifier qu'aucun cookie n'est utilisé
20 lines
504 B
HTML
20 lines
504 B
HTML
<div class="footer-content">
|
|
<p>
|
|
{{ now.Year }} - <a href="{{ .Site.Params.author.url }}" target="_blank">
|
|
{{ .Site.Params.author.name }}
|
|
</a>
|
|
-
|
|
<a href="{{ .Site.Params.copyrightUrl }}" target="_blank">
|
|
{{.Site.Copyright}}
|
|
</a>
|
|
-
|
|
{{ with site.GetPage "/legal" }}
|
|
<a href="{{ .RelPermalink }}">Mentions légales</a>
|
|
{{ end }}
|
|
-
|
|
{{ with site.GetPage "/privacy" }}
|
|
<a href="{{ .RelPermalink }}">Confidentialité</a>
|
|
{{ end }}
|
|
</p>
|
|
</div>
|