site-accueil-insa/downloads.php

32 lines
1.1 KiB
PHP
Raw Normal View History

2018-05-24 16:43:10 +02:00
<?php
ob_start(); // Start reading html
?>
<div class="inner">
2019-06-13 11:26:30 +02:00
<h1>Les Telechargements</h1>
2019-06-13 14:36:42 +02:00
<p>Si jamais t'as perdu quelque chose, pas de problèmes ! Tu pourras trouver tout ce dont tu as besoin ici.</p>
<ul>
2019-06-17 21:57:22 +02:00
<li>
2019-07-16 15:51:55 +02:00
<a href="assets/pdf/Plaquette-INSA-2019-Promo-57.pdf">La plaquette</a>
2019-06-17 21:57:22 +02:00
</li>
2019-06-13 14:36:42 +02:00
<li>
2019-07-16 15:51:55 +02:00
<a href="assets/pdf/Fiche-Parrainge.pdf">La fiche de parrainage</a>
2019-06-13 14:36:42 +02:00
</li>
<li>
2019-07-16 15:51:55 +02:00
<a href="assets/pdf/Fiche-Parrainge-Anglais.pdf">La même en anglais - Godparent form in english</a>
2019-06-17 21:57:22 +02:00
</li>
2019-06-13 14:36:42 +02:00
<li>
2019-07-16 15:51:55 +02:00
<a href="assets/pdf/Fiche-Autorisation-Droit-Image.pdf">La charte de droit à l'image</a>
2019-06-13 14:36:42 +02:00
</li>
<li>
2019-07-16 15:51:55 +02:00
<a href="assets/pdf/Fiche-WINI.pdf">La fiche d'autorisation pour le WINI</a>
2019-06-13 14:36:42 +02:00
</li>
</ul>
</div>
2019-08-22 08:55:05 +02:00
2018-05-24 16:43:10 +02:00
<?php
$pageContent = ob_get_clean(); // Store html content in variable
2018-06-05 20:03:33 +02:00
$pageTitle = "Téléchargements";
include("includes/template.php"); // Display template with variable content
2019-07-16 15:51:55 +02:00
?>