24 lines
No EOL
632 B
PHP
24 lines
No EOL
632 B
PHP
<?php
|
|
ob_start(); // Start reading html
|
|
?>
|
|
<p id="title">
|
|
USA
|
|
</p>
|
|
<p>
|
|
Test
|
|
</p>
|
|
<audio controls autoplay hidden>
|
|
<source src="assets/audio/USA.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 USA | Semaine d'Accueil 2018</title>
|
|
<?php
|
|
$pageMeta = ob_get_clean(); // Store html content in variable
|
|
$customBackgroundId = "bg_usa";
|
|
$pageTitle = "USA";
|
|
include("template.php"); // Display template with variable content
|
|
?>
|