site-accueil-insa/coms.php
2021-07-28 22:03:33 +02:00

123 lines
No EOL
3.6 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 = "Le Prez et la Vice Prez";
$comRespo = "Armand Carraz Billat";
$comRespoId = "armandcarraz@gmail.com";
$comRespo2 = "Eva Serdimet";
$comRespo2Id = "eva@serdimet.com";
include("includes/com_template.php");
$comId = "Bureau1";
$comTitle = "Le Bureau pt.1";
$comRespo = "Jules Carvalho<br>Secrétaire";
$comRespoId = "julescarvalho16@gmail.com";
$comRespo2 = "Laura Maumus<br>Trésorière";
$comRespo2Id = "laura.maumus@icloud.com";
include("includes/com_template.php");
$comId = "Bureau2";
$comTitle = "Le Bureau (la suite)";
$comRespo = "Emilie Combres<br>Responsable WINI";
$comRespoId = "combres.emilie@gmail.com";
$comRespo2 = "Louise Dinnat<br>Responsable Communication";
$comRespo2Id = "louise.dinnat54@gmail.Com";
include("includes/com_template.php");
$comId = "ComAnim";
$comTitle = "Com' Ceasar";
$comRespo = "Gabrielle Sipos";
$comRespoId = "gaby1919s@gmail.com";
$comRespo2 = "Esteban Sellies";
$comRespo2Id = "estebansellies@gmail.com";
include("includes/com_template.php");
$comId = "ComPrev";
$comTitle = "Com' Survie";
$comRespo = "Alexandre Masson";
$comRespoId = "masson.alex42240@gmail.com";
$comRespo2 = "Nina Moser";
$comRespo2Id = "nina.moser.tls@gmail.com";
include("includes/com_template.php");
$comId = "ComVille";
$comTitle = "Com' 13 - Les naufragés de la semaine";
$comRespo = "Emma Labourbe";
$comRespoId = "emma.labbus@gmail.com";
$comRespo2 = "Corentin Kuhn";
$comRespo2Id = "cocokuhn2002@gmail.com";
include("includes/com_template.php");
$comId = "ComOrientINSA";
$comTitle = "Com' 13 - Les naufragés de la semaine (suite)";
$comRespo = "Mathilde Regnier";
$comRespoId = "mat.regnier12@gmail.com";
$comRespo2 = "Zoé Ermine";
$comRespo2Id = "ermine.zoe@orange.fr ";
include("includes/com_template.php");
$comId = "ComBene";
$comTitle = "Com' Hovercraft";
$comRespo = "Joëy Panizzi";
$comRespoId = "joeypanizzi@icloud.com";
$comRespo2 = "Lise Pihan";
$comRespo2Id = "lise.pihan@gmail.com";
include("includes/com_template.php");
$comId = "ComRavitaillement";
$comTitle = "Com' Sponsor";
$comRespo = "Sarah Fridi";
$comRespoId = "sarahfri@wanadoo.fr";
$comRespo2 = "Ignacio Del Campo";
$comRespo2Id = "ignacioluis.delcampo.sanchez@gmail.com";
include("includes/com_template.php");
$comId = "ComParrainage";
$comTitle = "Com' Haymitch";
$comRespo = "Lili André";
$comRespoId = "liliandre620@gmail.com";
$comRespo2 = "Elsa Salvy";
$comRespo2Id = "salvyelsa@gmail.com";
include("includes/com_template.php");
$comId = "ComPhoto";
$comTitle = "Com' TV";
$comRespo = "Alice Gardy";
$comRespoId = "gardy@etud.insa-toulouse.fr";
$comRespo2 = "";
$comRespo2Id = "";
include("includes/com_template.php");
$comId = "ComGraphisme";
$comTitle = "Com' Cinna";
$comRespo = "Clément Jeanjean";
$comRespoId = "clemjj@orange.fr";
$comRespo2 = "Lila Frauciel";
$comRespo2Id = "frauciel@etud.insa-toulouse.fr";
include("includes/com_template.php");
$comId = "ComPlaquette";
$comTitle = "Com' Plaquette";
$comRespo = "Kevin Barge";
$comRespoId = "kevin.barge@protonmail.com";
$comRespo2 = "Quentin Leroi";
$comRespo2Id = "qleroi@orange.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
?>