site-accueil-insa/downloads.php

21 lines
559 B
PHP
Raw Normal View History

2018-05-24 16:43:10 +02:00
<?php
ob_start(); // Start reading html
?>
<h1>Téléchargements</h1>
2018-06-05 20:03:33 +02:00
<p>Sur cette page tu peux télécharger les différents documents de ta semaine d'accueil</p>
<ul>
<li>
2018-06-06 14:04:47 +02:00
<a href="assets/pdf/parrainage.pdf">La fiche de parrainage</a>
2018-06-05 20:03:33 +02:00
</li>
<li>
La plaquette
</li>
<li>
2018-06-06 14:04:47 +02:00
<a href="assets/images/planning.png">Le Planning</a>
2018-06-05 20:03:33 +02:00
</li>
</ul>
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";
2018-05-24 16:43:10 +02:00
include("template.php"); // Display template with variable content
2018-06-05 20:03:33 +02:00
?>