site-accueil-insa/usa.php

39 lines
1.3 KiB
PHP
Raw Normal View History

2018-06-05 20:03:33 +02:00
<?php
ob_start(); // Start reading html
?>
<p id="title">
2018-06-06 14:04:47 +02:00
Make INSA great again!
2018-06-05 20:03:33 +02:00
</p>
<p>
2018-06-09 15:33:50 +02:00
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!
2018-06-05 20:03:33 +02:00
</p>
2018-06-06 14:04:47 +02:00
<p>
Join the fight at <a href="https://www.facebook.com/groups/2040151589559931/">Facebook</a>, and ask to join the
special forces.
</p>
<p>
2018-06-13 08:31:37 +02:00
Here is your General
2018-06-06 14:04:47 +02:00
</p>
2018-06-09 15:18:02 +02:00
<img style="max-width: 300px" src="assets/images/general_usa.jpg">
2018-06-06 14:04:47 +02:00
<br>
<a href="https://www.youtube.com/watch?v=zqAZZmgv63Y">
Music
</a>
2018-06-05 20:03:33 +02:00
<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
2018-06-13 08:31:37 +02:00
?>