forked from rebillar/site-accueil-insa
10 lines
278 B
PHP
10 lines
278 B
PHP
<?php
|
|
ob_start(); // Start reading html
|
|
?>
|
|
<h1>Boomsouffle</h1>
|
|
<?php
|
|
$pageContent = ob_get_clean(); // Store html content in variable
|
|
$customBackgroundId = "boo_bg.jpg";
|
|
$pageTitle = "Boomsouffle";
|
|
include("includes/template.php"); // Display template with variable content
|
|
?>
|