site-accueil-insa/urss.php

22 lines
634 B
PHP
Raw Normal View History

2018-06-05 20:03:33 +02:00
<?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
?>