site-accueil-insa/downloads.php
2018-06-05 20:03:33 +02:00

24 lines
No EOL
528 B
PHP

<?php
ob_start(); // Start reading html
?>
<h1>Téléchargements</h1>
<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>
<?php
$pageContent = ob_get_clean(); // Store html content in variable
$pageTitle = "Téléchargements";
include("template.php"); // Display template with variable content
?>