site-accueil-insa/com_page.php

34 lines
709 B
PHP
Raw Normal View History

2022-06-23 21:54:23 +02:00
<?php
ob_start(); // Start reading html
//include "assets/fonts/color.php";
2023-07-02 19:16:03 +02:00
2022-06-23 21:54:23 +02:00
?>
<main>
2023-04-22 18:47:14 +02:00
<div class="zone_txt">
<a href="parrainage.php">
<span>
Le parrainage
</span>
</a>
2022-06-23 21:54:23 +02:00
2023-04-22 18:47:14 +02:00
<a href="anim.php">
<span>
Com'anim
</span>
</a>
2022-06-23 21:54:23 +02:00
2023-04-22 18:47:14 +02:00
<a href="com_ville.php">
<span>
Com'ville<br>
</span>
</a>
2022-06-23 21:54:23 +02:00
2023-04-22 18:47:14 +02:00
</div>
2022-06-23 21:54:23 +02:00
</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
2022-06-23 21:54:23 +02:00
include("structure/template.php");
?>