site-accueil-insa/downloads.php

30 lines
No EOL
924 B
PHP
Executable file

<?php
ob_start(); // Start reading html
?>
<h1>Les Téléchargements</h1>
<p>Sur cette page tu peux télécharger les différents documents de ta semaine d'accueil</p>
<ul>
<li>
<a href="assets/pdf/Parrainage.pdf">La fiche de parrainage</a>
</li>
<li>
<a href="assets/pdf/Plaquette.pdf">La plaquette</a>
</li>
<li>
<a href="assets/pdf/Charte-droit-image.pdf">La charte de droit à l'image</a>
</li>
<li>
<a href="assets/pdf/Fiche-renseignements-wini.pdf">La fiche d'autorisation pour le WINI</a>
</li>
<li>
<a href="assets/images/planning.png">Le planning</a>
</li>
<li>
<a href="assets/images/logos.zip">Les logos de la semaine</a>
</li>
</ul>
<?php
$pageContent = ob_get_clean(); // Store html content in variable
$pageTitle = "Téléchargements";
include("includes/template.php"); // Display template with variable content
?>