2018-05-24 16:43:10 +02:00
|
|
|
<?php
|
|
|
|
ob_start(); // Start reading html
|
|
|
|
?>
|
2019-05-20 22:26:46 +02:00
|
|
|
<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";
|
2019-05-18 14:55:49 +02:00
|
|
|
include("includes/template.php"); // Display template with variable content
|
2018-06-05 20:03:33 +02:00
|
|
|
?>
|