site-accueil-insa/clubs.php
2020-09-19 16:08:07 +02:00

13 lines
No EOL
339 B
PHP

<?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
?>