site-accueil-insa/boomsouffle.php

11 lines
278 B
PHP
Raw Normal View History

2019-05-18 17:58:23 +02:00
<?php
ob_start(); // Start reading html
?>
<h1>Boomsouffle</h1>
<?php
$pageContent = ob_get_clean(); // Store html content in variable
2019-06-04 14:49:19 +02:00
$customBackgroundId = "boo_bg.jpg";
2019-05-18 17:58:23 +02:00
$pageTitle = "Boomsouffle";
include("includes/template.php"); // Display template with variable content
?>