forked from vergnet/site-accueil-insa
107 lines
No EOL
3.3 KiB
PHP
Executable file
107 lines
No EOL
3.3 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 = "lraucroy@etud.insa-toulouse.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 = "berho@etud.insa-toulouse.fr";
|
|
$comRespo2 = "Renaud Kempf";
|
|
$comRespo2Id = "rkempf@etud.insa-toulouse.fr";
|
|
include("includes/com_template.php");
|
|
|
|
$comId = "";
|
|
$comTitle = "Com Animagus";
|
|
$comDescription = "Mot d'ordre : Incendio";
|
|
$comRespo = "Célestine Paillé";
|
|
$comRespoId = "";
|
|
$comRespo2 = "Gaston Opler";
|
|
$comRespo2Id = "opler@etud.insa-toulouse.fr";
|
|
include("includes/com_template.php");
|
|
|
|
$comId = "ComPatronus";
|
|
$comTitle = "Com Patronus";
|
|
$comDescription = "Là pour sauver des vies";
|
|
$comRespo = "Yann Tremblay";
|
|
$comRespoId = "tremblay@etud.insa-toulouse.fr";
|
|
$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 = "pimenta@etud.insa-toulouse.fr";
|
|
$comRespo2 = "";
|
|
$comRespo2Id = "";
|
|
include("includes/com_template.php");
|
|
|
|
$comId = "";
|
|
$comTitle = "Com Maraudeur";
|
|
$comDescription = "A la recherche du vif d'or !";
|
|
$comRespo = "Louis Roasio";
|
|
$comRespoId = "roasio@etud.insa-toulouse.fr";
|
|
$comRespo2 = "Nicolas Julia";
|
|
$comRespo2Id = "njulia@etud.insa-toulouse.fr";
|
|
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 = "ribette@etud.insa-toulouse.fr";
|
|
$comRespo2 = "Lucas Marchant";
|
|
$comRespo2Id = "marchant@etud.insa-toulouse.fr";
|
|
include("includes/com_template.php");
|
|
|
|
$comId = "";
|
|
$comTitle = "Com Ravitaillement";
|
|
$comDescription = "Ici, c'est la <a id=hideenigma href=\"enigma.php\">Compote</a> qui vous ravit !";
|
|
$comRespo = "Hugo Franceschi";
|
|
$comRespoId = "francesc@etud.insa-toulouse.fr";
|
|
$comRespo2 = "Abdessalem Guedouar";
|
|
$comRespo2Id = "guedouar@etud.insa-toulouse.fr";
|
|
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 = "";
|
|
$comTitle = "Com Nimbus 2001";
|
|
$comDescription = "Et si la Com Nimbus réveillait votre Patronus ?";
|
|
$comRespo = "Benjamin Fol";
|
|
$comRespoId = "fol@etud.insa-toulouse.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
|
|
?>
|