site-accueil-insa/glissefondor.php

18 lines
654 B
PHP
Raw Normal View History

2019-05-18 17:58:23 +02:00
<?php
ob_start(); // Start reading html
?>
2019-06-27 22:27:47 +02:00
<div class="inner"> <h1>Glissefondor</h1>
2019-05-18 17:58:23 +02:00
2019-06-27 22:27:47 +02:00
<p>N'oublie pas de rejoindre ton groupe <a href="https://www.facebook.com/groups/598630593981928/"> Facebook</a>
et de colorer ta blouse en un <strong style="color: #FF5F5F">Rouge Surnaturel</strong> !</p>
<br>Signé Célestine Paillebledore
<br>
<img style="max-width: 300px" src="assets/images/malboys.jpg">
</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_gli";
2019-05-18 17:58:23 +02:00
$pageTitle = "Glissefondor";
include("includes/template.php"); // Display template with variable content
?>