2019-05-18 17:58:23 +02:00
|
|
|
<?php
|
|
|
|
ob_start(); // Start reading html
|
|
|
|
?>
|
2019-06-08 13:00:46 +02:00
|
|
|
<div class="inner"><h1>Boomsouffle</h1></div>
|
2019-05-18 17:58:23 +02:00
|
|
|
<?php
|
|
|
|
$pageContent = ob_get_clean(); // Store html content in variable
|
2019-06-04 14:53:12 +02:00
|
|
|
$customBackgroundId = "bg_boo";
|
2019-05-18 17:58:23 +02:00
|
|
|
$pageTitle = "Boomsouffle";
|
|
|
|
include("includes/template.php"); // Display template with variable content
|
|
|
|
?>
|