site-accueil-insa/coms.php
Arthur 10f6a3b88a New hamburger
Text modifications
Colours modifications
Creation of 4 pages for each team
Modification of "stats" page
Timer modification
2019-05-18 10:14:19 +02:00

24 lines
No EOL
693 B
PHP
Executable file

<?php
ob_start(); // Start reading html
?>
<h1>Les Coms</h1>
<p>La liste de toutes les coms de ta semaine d'accueil, avec les contacts des responsables.</p>
<?php
$comId = "";
$comRespo2Id = "Mail respo 2 (facultatif";
$comRespo2 = "Nom respo 2 (pas obligé)";
$comTitle = "Nom Com";
$comDescription = "Description Com";
$comRespo = "Nom respo";
$comRespoId = "Mail respo --> Facebook ?";
$comRespoPhoto = "assets/images/usa_logo.png";
$comRespo2Photo = "assets/images/usa_logo.png";
include("includes/coms/com_template.php");
?>
<?php
$pageContent = ob_get_clean(); // Store html content in variable
$pageTitle = "Coms";
include("template.php"); // Display template with variable content
?>