forked from vergnet/site-accueil-insa
31 lines
842 B
PHP
Executable file
31 lines
842 B
PHP
Executable file
<?
|
|
ob_start(); // Start reading html
|
|
?>
|
|
<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>
|
|
</div>
|
|
|
|
<div id="tableWrapper">
|
|
<div id="tablePlanning">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="inner">
|
|
<h1 id="info-box-top">Informations</h1>
|
|
<div id="infoBox">
|
|
<p>Clique sur un événement pour afficher ses informations</p>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/planningEvents.css">
|
|
|
|
<?php
|
|
$pageContent = ob_get_clean(); // Store html content in variable
|
|
$pageTitle = "Planning";
|
|
$pageScripts = "<script src=\"assets/js/planning.js\"></script>";
|
|
include("includes/template.php"); // Display template with variable content
|
|
?>
|