site-accueil-insa/usa.php

36 lines
1.1 KiB
PHP
Raw Normal View History

2018-06-05 20:03:33 +02:00
<?php
ob_start(); // Start reading html
?>
2018-06-15 09:33:29 +02:00
<p id="title">
Make INSA great again!
</p>
<p>
You have joined the greatest nation on the surface of the earth, and you will help us conquer outer space! As a
young patriot, your mission, if you choose to accept it, is to crush the Reds under the command of the most
competent General of the US!
</p>
<p>
Join the fight at <a href="https://www.facebook.com/groups/2040151589559931/">Facebook</a>, and ask to join the
special forces.
</p>
<p>
Here is your General
</p>
<img style="max-width: 300px" src="assets/images/general_usa.jpg">
<br>
<a href="https://www.youtube.com/watch?v=zqAZZmgv63Y">
Music
</a>
<audio controls autoplay hidden>
<source src="assets/audio/USA.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
2018-06-15 09:33:29 +02:00
<title>Team USA | Semaine d'Accueil 2018</title>
2018-06-05 20:03:33 +02:00
<?php
$pageContent = ob_get_clean(); // Store html content in variable
2018-06-05 20:03:33 +02:00
$customBackgroundId = "bg_usa";
$pageTitle = "USA";
include("template.php"); // Display template with variable content
2018-06-13 08:31:37 +02:00
?>