2018-05-24 16:43:10 +02:00
|
|
|
<?php
|
|
|
|
ob_start(); // Start reading html
|
|
|
|
?>
|
2019-05-20 22:26:46 +02:00
|
|
|
<div class="inner">
|
2019-06-13 11:26:30 +02:00
|
|
|
<h1>Les Telechargements</h1>
|
2019-06-13 14:36:42 +02:00
|
|
|
<p>Si jamais t'as perdu quelque chose, pas de problèmes ! Tu pourras trouver tout ce dont tu as besoin ici.</p>
|
|
|
|
<ul>
|
2019-06-17 21:57:22 +02:00
|
|
|
|
|
|
|
<li>
|
2019-07-16 15:51:55 +02:00
|
|
|
<a href="assets/pdf/Plaquette-INSA-2019-Promo-57.pdf">La plaquette</a>
|
2019-06-17 21:57:22 +02:00
|
|
|
</li>
|
2019-06-13 14:36:42 +02:00
|
|
|
<li>
|
2019-07-16 15:51:55 +02:00
|
|
|
<a href="assets/pdf/Fiche-Parrainge.pdf">La fiche de parrainage</a>
|
2019-06-13 14:36:42 +02:00
|
|
|
</li>
|
|
|
|
<li>
|
2019-07-16 15:51:55 +02:00
|
|
|
<a href="assets/pdf/Fiche-Parrainge-Anglais.pdf">La même en anglais - Godparent form in english</a>
|
2019-06-17 21:57:22 +02:00
|
|
|
</li>
|
2019-06-13 14:36:42 +02:00
|
|
|
<li>
|
2019-07-16 15:51:55 +02:00
|
|
|
<a href="assets/pdf/Fiche-Autorisation-Droit-Image.pdf">La charte de droit à l'image</a>
|
2019-06-13 14:36:42 +02:00
|
|
|
</li>
|
|
|
|
<li>
|
2019-07-16 15:51:55 +02:00
|
|
|
<a href="assets/pdf/Fiche-WINI.pdf">La fiche d'autorisation pour le WINI</a>
|
2019-06-13 14:36:42 +02:00
|
|
|
</li>
|
|
|
|
</ul>
|
2019-05-20 22:26:46 +02:00
|
|
|
</div>
|
2019-08-22 08:55:05 +02:00
|
|
|
|
2018-05-24 16:43:10 +02:00
|
|
|
<?php
|
|
|
|
$pageContent = ob_get_clean(); // Store html content in variable
|
2018-06-05 20:03:33 +02:00
|
|
|
$pageTitle = "Téléchargements";
|
2019-05-18 14:55:49 +02:00
|
|
|
include("includes/template.php"); // Display template with variable content
|
2019-07-16 15:51:55 +02:00
|
|
|
?>
|