forked from rebillar/site-accueil-insa
11 lines
300 B
PHP
11 lines
300 B
PHP
<?php
|
|
ob_start(); // Start reading html
|
|
?>
|
|
<div class="inner"><h1>Verredaigle</h1></div>
|
|
|
|
<?php
|
|
$pageContent = ob_get_clean(); // Store html content in variable
|
|
$customBackgroundId = "bg_ver";
|
|
$pageTitle = "Verredaigle";
|
|
include("includes/template.php"); // Display template with variable content
|
|
?>
|