site-accueil-insa/downloads.php

12 lines
301 B
PHP
Raw Normal View History

2018-05-24 16:43:10 +02:00
<?php
ob_start(); // Start reading html
?>
<div class="inner">
<h1>Les Téléchargements</h1>
</div>
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
2018-06-05 20:03:33 +02:00
?>