2020-09-19 16:08:07 +02:00
|
|
|
<?php
|
|
|
|
ob_start(); // Start reading html
|
|
|
|
?>
|
|
|
|
<div class="inner">
|
|
|
|
<h1>Les Telechargements</h1>
|
|
|
|
<p>Si jamais t'as perdu quelque chose, pas de problèmes ! Tu pourras trouver tout ce dont tu as besoin ici.</p>
|
|
|
|
<ul>
|
|
|
|
|
|
|
|
<li>
|
2021-07-28 22:03:33 +02:00
|
|
|
<a href="assets/pdf/Plaquette-INSA-2021-Promo-59.pdf">La plaquette</a>
|
2020-09-19 16:08:07 +02:00
|
|
|
</li>
|
|
|
|
<li>
|
2021-07-28 22:03:33 +02:00
|
|
|
<a href="assets/pdf/Fiche-Parrainage.pdf">La fiche de parrainage</a>
|
2020-09-19 16:08:07 +02:00
|
|
|
</li>
|
2021-07-28 22:03:33 +02:00
|
|
|
<!--
|
2020-09-19 16:08:07 +02:00
|
|
|
<li>
|
|
|
|
<a href="assets/pdf/Charte-GB.pdf">La charte gestes barrières</a>
|
|
|
|
</li>
|
2021-07-28 22:03:33 +02:00
|
|
|
-->
|
|
|
|
<!--
|
2020-09-19 16:08:07 +02:00
|
|
|
<li>
|
|
|
|
<a href="assets/pdf/Fiche-Autorisation-Droit-Image.pdf">La charte de droit à l'image</a>
|
|
|
|
</li>
|
2021-07-28 22:03:33 +02:00
|
|
|
-->
|
|
|
|
<!--
|
|
|
|
<li>
|
|
|
|
<a href="assets/pdf/Enigma_PDF.pdf">L'énigme que tu cherchais tant</a>
|
|
|
|
</li>
|
|
|
|
-->
|
2020-09-19 16:08:07 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
$pageContent = ob_get_clean(); // Store html content in variable
|
|
|
|
$pageTitle = "Téléchargements";
|
|
|
|
include("includes/template.php"); // Display template with variable content
|
|
|
|
?>
|