bommario.php et pkpeach.php to team.php

This commit is contained in:
Baptiste Rebillard 2022-04-09 13:41:30 +02:00
parent 7aad894a71
commit 44a9078e78
5 changed files with 17 additions and 22 deletions

0
assets/css/page/team.css Normal file
View file

View file

@ -1,10 +0,0 @@
<?php
ob_start(); // Start reading html
?>
<main>
</main>
<?php
$infopage = ["", "Bommario", ob_get_clean(), "", "boomario"]; //relativepath, pagetitle, pagecontent, pagescript, pagename | cf structure/template.php ligne 2 à 6
include("structure/template.php");
?>

View file

@ -34,8 +34,8 @@ ob_start(); // Start reading html
Si tu as reçu (et lu!) ta plaquette, tu sais que tu fais partie d'une maison:
</p>
<p>
<a href="boomario.php" class="link">Boomario</a>,
ou <a href="pkpeach.php" class="link">pkpeach</a>.
<a href="team.php?team=boomario" class="link">Boomario</a>,
ou <a href="team.php?team=pkpeach" class="link">pkpeach</a>.
</p>
<p>
Fais gagner des points à ton équipe durant la semaine pour lui faire remporter les INSAGames !

View file

@ -1,10 +0,0 @@
<?php
ob_start(); // Start reading html
?>
<main>
</main>
<?php
$infopage = ["", "Pkpeach", ob_get_clean(), "", "pkpeach"]; //relativepath, pagetitle, pagecontent, pagescript, pagename | cf structure/template.php ligne 2 à 6
include("structure/template.php");
?>

15
team.php Normal file
View file

@ -0,0 +1,15 @@
<?php
ob_start(); // Start reading html
?>
<main>
<!-- pkpeach vs boomario il faudra changer $infopage avec pour pagetitle boomario ou pkpeach et le contenu selon un GET-->
</main>
<?php
$infopage = ["", "team", ob_get_clean(), "", "team"]; //relativepath, pagetitle, pagecontent, pagescript, pagename | cf structure/template.php ligne 2 à 6
include("structure/template.php");
?>