site-accueil-insa/coms.php

26 lines
No EOL
753 B
PHP
Executable file

<?php
ob_start(); // Start reading html
?>
<div class="inner">
<h1>Les Coms</h1>
<p>La liste de toutes les coms de ta semaine d'accueil, avec les contacts des responsables.</p>
</div>
<?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("includes/template.php"); // Display template with variable content
?>