site-accueil-insa/verredaigle.php
2019-06-04 14:49:19 +02:00

10 lines
278 B
PHP

<?php
ob_start(); // Start reading html
?>
<h1>Verredaigle</h1>
<?php
$pageContent = ob_get_clean(); // Store html content in variable
$customBackgroundId = "ver_bg.jpg";
$pageTitle = "Verredaigle";
include("includes/template.php"); // Display template with variable content
?>