forked from vergnet/site-accueil-insa
24 lines
1.5 KiB
PHP
24 lines
1.5 KiB
PHP
|
<?php
|
||
|
ob_start(); // Start reading html
|
||
|
?>
|
||
|
<div class="inner">
|
||
|
<h1>Les chansons</h1>
|
||
|
A l'INSA, Toulouse, les chansons sont très importantes, vous allez en chanter beaucoup et très fort pendant votre semaine d'intégration.
|
||
|
Pour que tu sois prêt pour cette semaine et pour l'entièreté de ta vie étudiante, on pense que c'est important que tu connaisses les chansons suivantes:
|
||
|
<br><br>
|
||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/gEPCrrLNfoI" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||
|
<br><br>
|
||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/FU-9kt-qi1g" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||
|
<br><br>
|
||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/PnFNYo9VHAM" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||
|
<br><br>
|
||
|
<iframe width="560" height="315" src="https://www.youtube.com/embed/_YXjuDdcH3g" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||
|
<br><br>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<?php
|
||
|
$pageContent = ob_get_clean(); // Store html content in variable
|
||
|
$pageTitle = "Les chansons";
|
||
|
include("includes/template.php"); // Display template with variable content
|
||
|
?>
|