22 lines
No EOL
634 B
PHP
22 lines
No EOL
634 B
PHP
<?php
|
|
ob_start(); // Start reading html
|
|
?>
|
|
<div id="contenu">
|
|
<h1>La Mère patrie</h1>
|
|
<p>Ton nouvel hymne.</p>
|
|
</div>
|
|
<audio controls autoplay hidden>
|
|
<source src="assets/audio/USSR.mp3" type="audio/mpeg">
|
|
Your browser does not support the audio element.
|
|
</audio>
|
|
<?php
|
|
$pageContent = ob_get_clean(); // Store html content in variable
|
|
ob_start(); // Start reading html
|
|
?>
|
|
<title>Team URSS | Semaine d'Accueil 2018</title>
|
|
<?php
|
|
$pageMeta = ob_get_clean(); // Store html content in variable
|
|
$customBackgroundId = "bg_ussr";
|
|
$pageTitle = "URSS";
|
|
include("template.php"); // Display template with variable content
|
|
?>
|