2021-06-10 19:27:01 +02:00
|
|
|
<?php
|
2021-06-11 11:25:49 +02:00
|
|
|
$root = realpath($_SERVER['DOCUMENT_ROOT']);
|
2021-06-10 19:27:01 +02:00
|
|
|
?>
|
|
|
|
<!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>À propos | Les Cocottes Minutes</title>
|
|
|
|
<link rel="stylesheet" href="/styles/style.css">
|
|
|
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
|
|
|
</head>
|
|
|
|
<body>
|
2021-06-11 11:25:49 +02:00
|
|
|
<div class="container">
|
|
|
|
<?php include("$root/menu.php");?>
|
|
|
|
<?php include("$root/header.php");?>
|
|
|
|
</div>
|
2021-06-10 19:27:01 +02:00
|
|
|
<section>
|
2021-06-11 11:25:49 +02:00
|
|
|
<div class="container flip reduced"></div>
|
|
|
|
<div class="container">
|
|
|
|
<h2>À propos</h2>
|
|
|
|
<p><strong>Les Cocottes Minutes</strong> est une association étudiante de l'Université d'Évry val d'Essonne.</p>
|
|
|
|
<p>Elle a pour objectif de promouvoir l'écologie au coeur de l'université et dans la ville d'Évry - Courcouronnes.</p>
|
|
|
|
</div>
|
|
|
|
<div class="container flip reduced"></div>
|
2021-06-10 19:27:01 +02:00
|
|
|
</section>
|
|
|
|
<?php include("$root/footer.php");?>
|
|
|
|
<script src="/scripts/script.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|