forked from DGNum/dgnum.eu
feat: Ajout des mentions légales
This commit is contained in:
parent
5c0fa9b416
commit
2d18be22f5
3 changed files with 49 additions and 1 deletions
40
site/legals.html
Normal file
40
site/legals.html
Normal file
|
@ -0,0 +1,40 @@
|
|||
---
|
||||
title: Mentions légales
|
||||
index: true
|
||||
---
|
||||
|
||||
<div class="tile is-ancestor is-vertical">
|
||||
<div class="tile is-parent">
|
||||
<div class="tile is-child px-5 notification">
|
||||
<h2 class="title is-2 has-text-centered">Mentions légales</h2>
|
||||
|
||||
<div class="block">
|
||||
<h3 class="title is-3">Editeur et hébergement</h3>
|
||||
<p>
|
||||
<strong>Délégation Générale Numérique (DGNum)</strong><br>
|
||||
Assocation de loi 1901<br><br>
|
||||
|
||||
Siège social: <br>
|
||||
<i>45 rue d'Ulm<br>
|
||||
75005 Paris - FRANCE</i><br><br>
|
||||
|
||||
Directeur de publication: Jean-Marc GAILIS, Président<br><br>
|
||||
|
||||
Contact: contact(at)dgnum.eu
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="block">
|
||||
<h3 class="title is-3">Propriété intellectuelle</h3>
|
||||
<p>
|
||||
La Délégation Générale Numérique est le propriétaire exclusif de tous
|
||||
les droits de propriété intellectuelle du contenu du site
|
||||
www.dgnum.eu.
|
||||
</p>
|
||||
<p>
|
||||
Toute réutilisation de ce contenu est interdite, sauf accord exprès de
|
||||
la Délégation Générale Numérique.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -87,7 +87,7 @@
|
|||
style="height:22px!important;margin-left:3px;vertical-align:text-bottom;"
|
||||
src="https://mirrors.creativecommons.org/presskit/icons/by.svg?ref=chooser-v1"></a></p>
|
||||
<p>
|
||||
<a href="https://status.dgnum.eu/">État des services</a>
|
||||
<a href="https://status.dgnum.eu/">État des services</a> | <a href="legals.html">Mentions légales</a>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
|
|
@ -112,6 +112,14 @@ main = hakyll $ do
|
|||
>>= applyAsTemplate context
|
||||
>>= loadAndApplyTemplate "templates/default.html" context
|
||||
>>= relativizeUrls
|
||||
|
||||
match "legals.html" $ do
|
||||
route idRoute
|
||||
compile $ do
|
||||
getResourceBody
|
||||
>>= applyAsTemplate context
|
||||
>>= loadAndApplyTemplate "templates/default.html" context
|
||||
>>= relativizeUrls
|
||||
|
||||
match ("faq.md" .||. "services.md" .||. "contact.md") $ do
|
||||
route $ setExtension "html"
|
||||
|
|
Loading…
Reference in a new issue