site-accueil-insa/clubs.php

13 lines
339 B
PHP
Raw Normal View History

2020-09-19 16:08:07 +02:00
<?php
ob_start(); // Start reading html
?>
<div class="inner">
<h1>Page en construction, repassez plus tard !</h1>
</div>
<?php
$pageContent = ob_get_clean(); // Store html content in variable
$pageTitle = "Les clubs";
include("includes/template.php"); // Display template with variable content
?>