forked from vergnet/site-accueil-insa
106 lines
No EOL
3.2 KiB
PHP
Executable file
106 lines
No EOL
3.2 KiB
PHP
Executable file
<?php
|
|
ob_start(); // Start reading html
|
|
?>
|
|
<div class="inner">
|
|
<h1>Les Com's</h1>
|
|
<p>La liste de toutes les com's de ta semaine d'accueil, avec les contacts des responsables.</p>
|
|
</div>
|
|
<?php
|
|
$comId = "";
|
|
$comTitle = "La Respo des Com's";
|
|
$comDescription = "Prête à tous les possibles pendant cette semaine inténsement gazive !";
|
|
$comRespo = "Léa Raucroy";
|
|
$comRespoId = "learaucroy@orange.fr";
|
|
$comRespo2 = "";
|
|
$comRespo2Id = "";
|
|
include("includes/com_template.php");
|
|
|
|
|
|
$comId = "ComSiriusBlack";
|
|
$comTitle = "Com Sirius Black";
|
|
$comDescription = "Presque prêts pour vous accueillir !!!";
|
|
$comRespo = "Christine Berho";
|
|
$comRespoId = "christineberho@gmail.com";
|
|
$comRespo2 = "Renaud Kempf";
|
|
$comRespo2Id = "kempfnono@orange.fr";
|
|
include("includes/com_template.php");
|
|
|
|
$comId = "";
|
|
$comTitle = "Com Animagus";
|
|
$comDescription = "Mot d'ordre : Incendio";
|
|
$comRespo = "Célestine Paillé";
|
|
$comRespoId = "celestinepaille@gmail.com";
|
|
$comRespo2 = "Gaston Opler";
|
|
$comRespo2Id = "gastonopler1@gmail.com";
|
|
include("includes/com_template.php");
|
|
|
|
$comId = "ComPatronus";
|
|
$comTitle = "Com Patronus";
|
|
$comDescription = "Commatez sur vos deux oreilles";
|
|
$comRespo = "Yann Tremblay";
|
|
$comRespoId = "tremblayyann88@gmail.com ";
|
|
$comRespo2 = "Florian Hoorelbeke";
|
|
$comRespo2Id = "hoorelbe@etud.insa-toulouse.fr";
|
|
include("includes/com_template.php");
|
|
|
|
$comId = "";
|
|
$comTitle = "Com Stupefix";
|
|
$comDescription = "Toujours là pour capturer vos moments magiques";
|
|
$comRespo = "Shivaree Pimenta";
|
|
$comRespoId = "shivareepimenta@gmail.com";
|
|
$comRespo2 = "";
|
|
$comRespo2Id = "";
|
|
include("includes/com_template.php");
|
|
|
|
$comId = "";
|
|
$comTitle = "Com Maraudeur";
|
|
$comDescription = "";
|
|
$comRespo = "Louis Roasio";
|
|
$comRespoId = "louis.roasio@gmail.com";
|
|
$comRespo2 = "Nicolas Julia";
|
|
$comRespo2Id = "nicolas.julia81@hotmail.com";
|
|
include("includes/com_template.php");
|
|
|
|
$comId = "";
|
|
$comTitle = "Com Pre-au-Lard";
|
|
$comDescription = "Prêts pour te faire découvrir les secrets de la ville rose";
|
|
$comRespo = "Mathis Ribette";
|
|
$comRespoId = "mathis.ribette@gmail.com";
|
|
$comRespo2 = "Lucas Marchant";
|
|
$comRespo2Id = "marchant0lucas@gmail.com";
|
|
include("includes/com_template.php");
|
|
|
|
$comId = "";
|
|
$comTitle = "Com Ravitaillement";
|
|
$comDescription = "Ici, c'est la Compote qui vous ravit !";
|
|
$comRespo = "Hugo Franceschi";
|
|
$comRespoId = "hugo.fransceschi.bros@gmail.com";
|
|
$comRespo2 = "Abdessalem Guedouar";
|
|
$comRespo2Id = "guedouarabdessalem@gmail.com ";
|
|
include("includes/com_template.php");
|
|
|
|
$comId = "";
|
|
$comTitle = "Spe'Bar";
|
|
$comDescription = "Des potions pour en voir de toutes les couleurs";
|
|
$comRespo = "Alban Charonnat";
|
|
$comRespoId = "charonna@etud.insa-toulouse.fr";
|
|
$comRespo2 = "";
|
|
$comRespo2Id = "";
|
|
include("includes/com_template.php");
|
|
|
|
$comId = "Et si la Com Nimbus réveillait votre Patronus ?";
|
|
$comTitle = "Com Nimbus 2001";
|
|
$comDescription = "";
|
|
$comRespo = "Benjamin Fol";
|
|
$comRespoId = "benjifol@hotmail.fr";
|
|
$comRespo2 = "Clément Paillet";
|
|
$comRespo2Id = "cpaillet@etud.insa-toulouse.fr ";
|
|
include("includes/com_template.php");
|
|
|
|
?>
|
|
<div class="inner"></div>
|
|
<?php
|
|
$pageContent = ob_get_clean(); // Store html content in variable
|
|
$pageTitle = "Com's";
|
|
include("includes/template.php"); // Display template with variable content
|
|
?>
|