2020-09-19 16:08:07 +02:00
|
|
|
<?php
|
|
|
|
ob_start(); // Start reading html
|
|
|
|
?>
|
2022-01-20 01:24:29 +01:00
|
|
|
<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="#">Godfather/Godmother form</a>)
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="assets/pdf/Charte-Covid.pdf">La charte gestes barrières</a> (<a href="#">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="#">or here</a>,
|
|
|
|
<a href="assets/pdf/Derechos-de-imagen.pdf">o aquí</a>)
|
|
|
|
</li>
|
|
|
|
</ul>
|
2020-09-19 16:08:07 +02:00
|
|
|
<?php
|
2022-01-19 22:26:58 +01:00
|
|
|
$infopage = ["", "Telechargements", ob_get_clean(), "", "downloads"]; //relativepath, pagetitle, pagecontent, pagescript, pagename | cf structure/template.php ligne 2 à 6
|
|
|
|
include("structure/template.php");
|
|
|
|
?>
|