forked from rebillar/site-accueil-insa
19 lines
616 B
PHP
19 lines
616 B
PHP
<?php
|
|
ob_start(); // Start reading html
|
|
?>
|
|
<div class="inner"><h1>Boomsouffle</h1>
|
|
|
|
|
|
|
|
<p>N'oublie pas de rejoindre ton groupe <a href="https://www.facebook.com/groups/608536079623052/"> Facebook</a>
|
|
et de colorer ta blouse en un <strong style="color: #fafd78">Jaune Magnétique</strong> !</p>
|
|
<br>Signé Sarah Diggouni
|
|
<br>
|
|
<img style="max-width: 300px" src="assets/images/malboys.jpg">
|
|
</div>
|
|
<?php
|
|
$pageContent = ob_get_clean(); // Store html content in variable
|
|
$customBackgroundId = "bg_boo";
|
|
$pageTitle = "Boomsouffle";
|
|
include("includes/template.php"); // Display template with variable content
|
|
?>
|