site-accueil-insa/coms.php

137 lines
3.5 KiB
PHP
Raw Normal View History

2020-09-19 16:08:07 +02:00
<?php
ob_start(); // Start reading html
2023-04-29 15:48:49 +02:00
include "assets/fonts/color.php";
2020-09-19 16:08:07 +02:00
?>
2022-04-09 13:35:13 +02:00
<main>
2022-04-08 17:42:31 +02:00
<div id="main_content">
2023-04-22 18:47:14 +02:00
<div class="zone_txt">
2023-04-29 15:48:49 +02:00
<div class='title_com'><?= colored_text("Le Bureau") ?></div>
<hr>
2022-04-08 17:42:31 +02:00
<?php
2023-08-02 00:15:51 +02:00
$fonction = ["Présidente", "Vice président", "Trésorier", "Secrétaire"];
$prenom = ["Eléa", "Arthur", "Paul", "Cannelle"];
$nom = ["Chavagneux-Maréchal", "Barbier", "Aversaing", "Pineau"];
$mail = ["chavagneux-m@insa-toulouse.fr", "barbie@insa-toulouse.fr", "aversaing@insa-toulouse.fr", "pineaucannelle@gmail.com"];
2022-04-08 17:42:31 +02:00
echo "<ul>";
for($i = 0; $i < count($prenom); $i++) {
echo "<li>";
2022-04-09 19:08:39 +02:00
echo "<div class='fonction_bureau'>".$fonction[$i]."</div>";
2022-04-08 17:42:31 +02:00
echo "<h4>".$prenom[$i]." ".$nom[$i]."</h4>";
echo "<a href='mailto:".$mail[$i]."' class='linkmail'>".$mail[$i]."</a>";
echo "</li>";
2023-04-29 15:48:49 +02:00
echo "<hr>";
2022-04-08 17:42:31 +02:00
}
echo "</ul>";
?>
2023-04-22 18:47:14 +02:00
</div>
2022-04-08 17:42:31 +02:00
<?php
function respo($name, $prenom, $nom, $mail) {
2023-04-29 15:48:49 +02:00
echo "<div class=\"zone_txt\">";
echo "<div class='title_com'>".colored_text($name)."</div>";
echo "<hr>";
2022-04-08 17:42:31 +02:00
echo "<ul>";
for($i = 0; $i < count($prenom); $i++) {
echo "<li>";
echo "<h4>".$prenom[$i]." ".$nom[$i]."</h4>";
2022-04-08 17:42:31 +02:00
echo "<a href='mailto:".$mail[$i]."' class='linkmail'>".$mail[$i]."</a>";
echo "</li>";
2022-04-08 17:42:31 +02:00
}
echo "</ul>";
2023-04-29 15:48:49 +02:00
echo "</div>";
2022-04-08 17:42:31 +02:00
}
?>
<?php
respo(
2022-04-08 17:42:31 +02:00
"Respo com wini",
["Salomé","Juliette"],
["Peyron","Mougenot"],
["peyron@insa-toulouse.fr","mougenot@insa-toulouse.fr"]);
respo(
2022-04-08 17:42:31 +02:00
"Respo com prev",
["Ellande", "Faustine"],
["Francoise", "Giraud"],
["ellande2.fr@gmail.com","faustine.giraud31@gmail.com"]);
respo(
2022-04-08 17:42:31 +02:00
"Respo com parrainage",
["Alice", "Rachel"],
["Grenier", "Adamadorassy"],
["grenie@insa-toulouse.fr","adamadorassy@insa-toulouse.fr"]);
respo(
2022-04-08 17:42:31 +02:00
"Respo com anim",
["Adélais", "Pauline"],
["Bruel", "Azais"],
["adelais.bruel@laposte.net","azai@insa-toulouse.fr"]);
respo(
2022-04-08 17:42:31 +02:00
"Respo com ville",
["Lucie", "Amandine"],
["Marchais", "Bessiere"],
["lucie.marchais62@gmail.com","amandine.bessiere1@gmail.com"]);
respo(
2022-04-08 17:42:31 +02:00
"Respo com rallye",
["Lila"],
["Manez"],
["limnz@orange.fr"]);
respo(
2022-04-08 17:42:31 +02:00
"Respo soirée des talents",
["Hugo", "Alice"],
["Belval", "Alice"],
["hugo.belval31@gmail.com", "alice.eon56@gmail.com"]);
respo(
2022-04-08 17:42:31 +02:00
"Respo com bene",
["Vincent", "Lilou"],
["Dubreucq", "Joly"],
["dubreucq@insa-toulouse.fr", "jol@insa-toulouse.fr"]);
respo(
2022-04-08 17:42:31 +02:00
"Respo com photo",
["Mahault", "Jil"],
["Pommier-Maurussane", "Saint-Martin"],
["pommier-maur@insa-toulouse.fr", "Saint-Martin@insa-toulouse.fr"]);
respo(
"Respo com Ravit",
["Chloé","Clélia"],
["Marchesin","Desjean"],
["marchesinchloe@gmail.com","clelia.desjean@gmail.com"]);
respo(
"Respo com Graphisme",
["Marie-lou"],
["Thomas"],
["tho@insa-toulouse.fr"]);
respo(
"Respo com Plaquette",
["Carole", "Clément","Jeanne"],
["Beaugeois", "Reolon","Marque"],
["beaugeois@insa-toulouse.fr", "reolon@insa-toulouse.fr","Jeannemarque@icloud.com"]);
2022-04-08 17:42:31 +02:00
respo(
'Respo Web',
["Alejandro", "Théo"],
["Pastor", "Mougnibas"],
["pastor@insa-toulouse.fr", "mougnibas@insa-toulouse.fr"]);
2022-04-08 17:42:31 +02:00
?>
</div>
2022-04-08 17:42:31 +02:00
</main>
2020-09-19 16:08:07 +02:00
<?php
$infopage = ["", "Com's", ob_get_clean(), "", "coms","<h1>Les Com's</h1>La liste des responsables (les meilleurs, objectivement ^^)"]; //relativepath, pagetitle, pagecontent, pagescript, pagename | cf structure/template.php ligne 2 à 6
2022-01-19 22:26:58 +01:00
include("structure/template.php");
2023-08-02 00:15:51 +02:00
?>