site-accueil-insa/downloads.php

29 lines
977 B
PHP
Raw Normal View History

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>
<a href="assets/pdf/Plaquette-INSA-2020-Promo-58.pdf">La plaquette</a>
</li>
<li>
<a href="assets/pdf/Fiche-Parrainge.pdf">La fiche de parrainage</a>
</li>
<li>
<a href="assets/pdf/Charte-GB.pdf">La charte gestes barrières</a>
</li>
<li>
<a href="assets/pdf/Fiche-Autorisation-Droit-Image.pdf">La charte de droit à l'image</a>
</li>
</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
?>