forked from vergnet/site-accueil-insa
31 lines
1.1 KiB
PHP
Executable file
31 lines
1.1 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-2019-Promo-57.pdf">La plaquette</a>
|
|
</li>
|
|
<li>
|
|
<a href="assets/pdf/Fiche-Parrainge.pdf">La fiche de parrainage</a>
|
|
</li>
|
|
<li>
|
|
<a href="assets/pdf/Fiche-Parrainge-Anglais.pdf">La même en anglais - Godparent form in english</a>
|
|
</li>
|
|
<li>
|
|
<a href="assets/pdf/Fiche-Autorisation-Droit-Image.pdf">La charte de droit à l'image</a>
|
|
</li>
|
|
<li>
|
|
<a href="assets/pdf/Fiche-WINI.pdf">La fiche d'autorisation pour le WINI</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
|
|
?>
|