site-accueil-insa/downloads.php

24 lines
528 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>
La fiche de parrainage
</li>
<li>
La plaquette
</li>
<li>
Le Planning
</li>
</ul>
<p>
Et non, y'en a aucun en ligne encore
</p>
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
?>