forked from rebillar/site-accueil-insa
34 lines
No EOL
709 B
PHP
34 lines
No EOL
709 B
PHP
<?php
|
|
ob_start(); // Start reading html
|
|
|
|
//include "assets/fonts/color.php";
|
|
|
|
?>
|
|
<main>
|
|
|
|
<div class="zone_txt">
|
|
<a href="parrainage.php">
|
|
<span>
|
|
Le parrainage
|
|
</span>
|
|
</a>
|
|
|
|
<a href="anim.php">
|
|
<span>
|
|
Com'anim
|
|
</span>
|
|
</a>
|
|
|
|
<a href="com_ville.php">
|
|
<span>
|
|
Com'ville<br>
|
|
</span>
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
<?php
|
|
$infopage = ["", "Page des com's", ob_get_clean(), "", "com_page","Messages des COM's"]; //relativepath, pagetitle, pagecontent, pagescript, pagename | cf structure/template.php ligne 2 à 6
|
|
include("structure/template.php");
|
|
?>
|