site-accueil-insa/urss.php

37 lines
1.5 KiB
PHP
Raw Normal View History

2018-06-05 20:03:33 +02:00
<?php
ob_start(); // Start reading html
?>
2018-06-06 14:04:47 +02:00
<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>
2018-06-09 15:18:02 +02:00
<p>
Вот твой генерал
</p>
<img style="max-width: 300px" src="assets/images/general_urss.jpg">
<br>
2018-06-06 14:04:47 +02:00
<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>
2018-06-05 20:03:33 +02:00
<?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
?>