site-accueil-insa/downloads.php
2021-08-08 18:44:13 +02:00

35 lines
1.4 KiB
PHP
Executable file

<?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-2021-Promo-59.pdf">La plaquette</a>
</li>
<li>
<a href="assets/pdf/Fiche-Parrainage.pdf">La fiche de parrainage</a> (<a href="assets/pdf/Godfather-Godmother-Form.pdf">Godfather/Godmother form</a>)
</li>
<li>
<a href="assets/pdf/Charte-Covid.pdf">La charte gestes barrières</a> (<a href="assets/pdf/Covid-Charter.pdf">Covid charter</a>,
<a href="assets/pdf/Carta-Covid.pdf">Carta covid</a>)
</li>
<li>
<a href="assets/pdf/Droit-Image.pdf">La charte de droit à l'image</a> (<a href="assets/pdf/Image-rights.pdf">or here</a>,
<a href="assets/pdf/Derechos-de-imagen.pdf">o aquí</a>)
</li>
<!--
<li>
<a href="assets/pdf/Enigma_PDF.pdf">L'énigme 5 que tu cherchais tant</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
?>