2018-03-25 13:22:28 +02:00
|
|
|
<?php
|
2018-03-25 14:19:53 +02:00
|
|
|
ob_start(); // Start reading html
|
2018-03-25 13:22:28 +02:00
|
|
|
?>
|
2019-05-20 22:26:46 +02:00
|
|
|
<div class="inner">
|
2018-06-05 20:03:33 +02:00
|
|
|
<h1>Le Parrainage</h1>
|
2019-05-20 22:26:46 +02:00
|
|
|
</div>
|
|
|
|
|
2018-03-25 13:22:28 +02:00
|
|
|
<?php
|
2018-03-25 14:19:53 +02:00
|
|
|
$pageContent = ob_get_clean(); // Store html content in variable
|
2018-06-05 20:03:33 +02:00
|
|
|
$pageTitle = "Parrainage";
|
2019-05-18 14:55:49 +02:00
|
|
|
include("includes/template.php"); // Display template with variable content
|
2018-06-09 15:18:02 +02:00
|
|
|
?>
|