54 lines
2.1 KiB
PHP
54 lines
2.1 KiB
PHP
<?php
|
|
$root = realpath($_SERVER['DOCUMENT_ROOT']);
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Mentions Légales | Les Cocottes Minutes</title>
|
|
<link rel="stylesheet" href="/styles/style.css">
|
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<?php include("$root/menu.php");?>
|
|
<?php include("$root/header.php");?>
|
|
</div>
|
|
<section>
|
|
<div class="container flip reduced"></div>
|
|
<div class="container">
|
|
<h2>Mentions Légales</h2>
|
|
<h3>Association</h3>
|
|
<p>Direction: Clément DEMONGIN</p>
|
|
<h3>Site web</h3>
|
|
<p>Directeur de la publication: ...</p>
|
|
<p>Développeur: Samuel ORTION, étudiant en Sciences de la Vie - Informatique</p>
|
|
<h4>Licence</h4>
|
|
<h5>Contenu</h5>
|
|
<p>
|
|
Sauf mention contraire, l'ensemble du contenu de ce site web,
|
|
(image et texte, par exemple) est mis sous licence
|
|
Creative Commons - Attribution - ShareAlike 4.0 International.
|
|
</p>
|
|
<br>
|
|
<img class="full-height" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/57/CC-BY-SA_icon_white.svg/640px-CC-BY-SA_icon_white.svg.png" alt="cc-by-sa">
|
|
<h5>Code source</h5>
|
|
<p>
|
|
Le code source de ce site web est disponible sous licence GNU Affero GPL v3 <a href="https://forge.chapril.org/LesCocottesMinutes/www">sur la forge Gitea du Chapril</a>.
|
|
</p>
|
|
<br>
|
|
<a href="//www.gnu.org/licenses/agpl-3.0.en.html">
|
|
<img class="full-height" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/06/AGPLv3_Logo.svg/220px-AGPLv3_Logo.svg.png" alt="agpl logo">
|
|
</a>
|
|
</div>
|
|
<div class="container flip reduced"></div>
|
|
</section>
|
|
<?php include("$root/footer.php");?>
|
|
<script src="/scripts/script.js"></script>
|
|
</body>
|
|
|
|
</html>
|