forked from vergnet/site-accueil-insa
title index
This commit is contained in:
parent
0ba8c12e43
commit
1a6895a140
4 changed files with 73 additions and 8 deletions
|
@ -1,6 +1,38 @@
|
||||||
body {
|
body {
|
||||||
font-family: 'New Super Mario Font U', sans-serif;
|
font-family: 'New Super Mario Font U', sans-serif;
|
||||||
background-color: blue;
|
background-color: #33A8FF;
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
padding-top: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#boxjaune {
|
||||||
|
display: inline-block;
|
||||||
|
background-color: #FFDC00;
|
||||||
|
padding: 10px;
|
||||||
|
box-shadow: 10px 10px 15px 5px rgba(0,0,0,0.61);
|
||||||
|
border: 3px solid black;
|
||||||
|
margin: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#title_in_box {
|
||||||
|
padding: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.circle {
|
||||||
|
width: 5px;
|
||||||
|
height: 5px;
|
||||||
|
border-radius: 2.5px;
|
||||||
|
background: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#circle_l {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
#circle_r {
|
||||||
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
#menu_space_bottom {
|
#menu_space_bottom {
|
||||||
|
|
10
boomario.php
Normal file
10
boomario.php
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<?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");
|
||||||
|
?>
|
27
index.php
27
index.php
|
@ -1,8 +1,16 @@
|
||||||
<?php
|
<?php
|
||||||
ob_start(); // Start reading html
|
ob_start(); // Start reading html
|
||||||
?>
|
?>
|
||||||
<main>
|
<main align="center">
|
||||||
<h3 id="homeSubtitle">Semaine d'Accueil INSA Toulouse 2021</h3>
|
|
||||||
|
<div id="boxjaune">
|
||||||
|
<div id="circle_l" class="circle"></div>
|
||||||
|
<div id="circle_r" class="circle"></div>
|
||||||
|
<div id="title_in_box">Semaine d'Accueil INSA Toulouse 2022</div>
|
||||||
|
<div id="circle_l" class="circle"></div>
|
||||||
|
<div id="circle_r" class="circle"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="homeText">
|
<div id="homeText">
|
||||||
<p>
|
<p>
|
||||||
Bienvenue à l'INSA Toulouse jeune aventurier, pour ta magnifique semaine d'accueil.
|
Bienvenue à l'INSA Toulouse jeune aventurier, pour ta magnifique semaine d'accueil.
|
||||||
|
@ -22,13 +30,18 @@ ob_start(); // Start reading html
|
||||||
</p>
|
</p>
|
||||||
<h3>INSAGames</h3>
|
<h3>INSAGames</h3>
|
||||||
<p>
|
<p>
|
||||||
Si tu as reçu (et lu!) ta plaquette, tu sais que tu fais partie d'une maison:test
|
Si tu as reçu (et lu!) ta plaquette, tu sais que tu fais partie d'une maison:
|
||||||
<a href="#.php" class="score-pek">#1</a>,
|
|
||||||
ou de <a href="#.php" class="score-boo">#2</a>.
|
|
||||||
<br>
|
|
||||||
<a href="stats.php">Fais gagner des points</a> à ton équipe durant la semaine pour lui faire remporter l'aventure !
|
|
||||||
</p>
|
</p>
|
||||||
|
<p>
|
||||||
|
<a href="boomario.php">Boomario</a>,
|
||||||
|
ou de <a href="pkpeach.php" >pkpeach</a>.
|
||||||
|
<br>
|
||||||
|
|
||||||
|
Fais gagner des points à ton équipe durant la semaine pour lui faire remporter l'aventure !
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Si tu souhaite voir le détail des scores, <a href="stats.php">c'est par ici</a>.
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
<?php
|
<?php
|
||||||
|
|
10
pkpeach.php
Normal file
10
pkpeach.php
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<?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");
|
||||||
|
?>
|
Loading…
Reference in a new issue