site-accueil-insa/coms.php

24 lines
693 B
PHP
Raw Normal View History

2018-03-25 13:22:28 +02:00
<?php
2018-03-25 14:19:53 +02:00
ob_start(); // Start reading html
2018-03-25 13:22:28 +02:00
?>
2018-05-25 08:33:39 +02:00
<h1>Les Coms</h1>
<p>La liste de toutes les coms de ta semaine d'accueil, avec les contacts des responsables.</p>
2018-03-25 13:22:28 +02:00
<?php
2019-02-21 18:38:49 +01:00
$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 ?";
2018-06-06 14:04:47 +02:00
$comRespoPhoto = "assets/images/usa_logo.png";
$comRespo2Photo = "assets/images/usa_logo.png";
2018-03-25 14:19:53 +02:00
include("includes/coms/com_template.php");
2018-03-25 13:22:28 +02:00
2018-07-24 16:58:00 +02:00
2018-03-25 13:22:28 +02:00
?>
<?php
2018-03-25 14:19:53 +02:00
$pageContent = ob_get_clean(); // Store html content in variable
2018-06-05 20:03:33 +02:00
$pageTitle = "Coms";
2018-03-25 14:19:53 +02:00
include("template.php"); // Display template with variable content
2018-06-05 20:03:33 +02:00
?>