site-accueil-insa/downloads.php

36 lines
1.4 KiB
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>
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-30 18:33:19 +02:00
<a href="assets/pdf/Fiche-Parrainage.pdf">La fiche de parrainage</a> (<a href="assets/pdf/Godfather-Godmother-Form.pdf">Godfather/Godmother form</a>)
2020-09-19 16:08:07 +02:00
</li>
<li>
2021-07-30 18:33:19 +02:00
<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>)
2020-09-19 16:08:07 +02:00
</li>
<li>
2021-07-30 18:33:19 +02:00
<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>)
2020-09-19 16:08:07 +02:00
</li>
2021-08-08 12:03:12 +02:00
<!--
<li>
2021-08-08 18:44:13 +02:00
<a href="assets/pdf/Enigma_PDF.pdf">L'énigme 5 que tu cherchais tant</a>
2021-08-08 12:03:12 +02:00
</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
?>