forked from rebillar/site-accueil-insa
25 lines
683 B
PHP
25 lines
683 B
PHP
|
<?php
|
||
|
ob_start(); // Start reading html
|
||
|
?>
|
||
|
<main>
|
||
|
|
||
|
<div class="box-jaune">
|
||
|
<span class="corners corners-top"></span>
|
||
|
<span class="corners corners-bottom"></span>
|
||
|
|
||
|
<div class="title">Page en Construction</div>
|
||
|
|
||
|
<span class="circles circles-top"></span>
|
||
|
<span class="circles circles-bottom"></span>
|
||
|
</div>
|
||
|
|
||
|
<div id="msg_acc">
|
||
|
<p>
|
||
|
Page en construction, revenez plus tard
|
||
|
</p>
|
||
|
</div>
|
||
|
</main>
|
||
|
<?php
|
||
|
$infopage = ["", "En construction", ob_get_clean(), "", "index"]; //relativepath, pagetitle, pagecontent, pagescript, pagename | cf structure/template.php ligne 2 à 6
|
||
|
include("structure/template.php");
|
||
|
?>
|