site-accueil-insa/planning.php

24 lines
663 B
PHP
Raw Normal View History

2018-04-21 15:20:18 +02:00
<?
2018-03-25 14:19:53 +02:00
ob_start(); // Start reading html
2018-03-25 13:22:28 +02:00
?>
<div class="inner">
<h1>Le Planning</h1>
<p>Voilà le planning de ta semaine. Les horaires sont approximatifs.</p>
<p><strong>Clique sur une activité pour avoir plus d'informations.</strong></p>
2018-03-25 13:22:28 +02:00
</div>
<div id="tableWrapper">
<div id="tablePlanning">
</div>
2018-03-25 13:22:28 +02:00
</div>
2019-05-16 18:34:02 +02:00
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/planningEvents.css">
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 = "Planning";
$pageScripts = "<script src=\"assets/js/planning.js\"></script>";
include("includes/template.php"); // Display template with variable content
2018-03-25 13:22:28 +02:00
?>