site-accueil-insa/urss.php
2018-07-06 19:34:49 +02:00

37 lines
No EOL
1.5 KiB
PHP
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
ob_start(); // Start reading html
?>
<div id="contenu">
<h1>твоя родина</h1>
<p>Приветствуйте молодого товарища, добро пожаловать на свою новую родину для этого монументального INSA WARS.
Вам придётся прибыть с вашей украшенной блузкой, чтобы покорить пространство под цветами вашей родины.</p>
<p>
присоединиться к битве на <a href="https://www.facebook.com/groups/767105833677987/">Facebook</a>
</p>
<p id="hint">
Google trad est ton ami.
</p>
<p>
Вот твой генерал
</p>
<img style="max-width: 300px" src="assets/images/general_urss.jpg">
<br>
<a href="https://www.youtube.com/watch?v=U06jlgpMtQs">
музыка
</a>
</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
?>