blob: 4eb8e58c75a7ef84d92e0954f86dd6e25d42a5c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
<?php
// view/discographie.php
// variable $css
ob_start();
?>
<link rel="stylesheet" type="text/css" href="public/<?= $page_actuelle ?>.css" />
<link rel="stylesheet" type="text/css" href="public/donnees_hors_editeur.css" />
<?php
$css = ob_get_clean();
//variable $js
ob_start();
?>
<script type="text/javascript" src="public/main.js" ></script>
<?php
if(isset($_GET['action']) && $_GET['action'] == 'edition')
{
// bibliothèques JS ckeditor
?>
<script src="lib/ckeditor5/build/ckeditor.js"></script>
<?php
}
$js = ob_get_clean();
// variable $header
ob_start();
echo "\n";
?>
<header>
<div id="titre" >
<span class="police_titre" >Discographie</span>
</div>
<div id="photo" ></div>
</header>
<?php
$header = ob_get_clean();
// variable $content
ob_start();
?>
<aside>
<div>
<p id="bouton_chronologie" >Chronologie</p>
<div id="chronologie" >
<!-- ajouter à chaque entrée une ancre et un lien soit vers l'ancre soit vers la page dédiée -->
<p><a href="emoi_des_mots.php" >Emoi des mots, MF chante Max Jacob (2012)</a></p>
<p>Kan Tri (2011)</p>
<p>Tri Men (2007)</p>
<p><a href="kan_tri_2003.php" >Kan Tri (2003)</a></p>
<p><a href="hey_ho.php" >Hey ! Ho ! (2005)</a></p>
</div>
</div>
</aside>
<section>
<?php
if($_SESSION['admin'] == 1)
{
if(isset($_GET['action']) && $_GET['action'] == 'edition' && !isset($_GET['album']))
{
?>
<h3>Ajouter un album</h3>
<?= $editeurHTML ?>
<?php
}
else
{
?>
<p class="boutonAlbum" >
<a href="index.php?page=discographie&action=edition" >
Nouvel album
</a>
</p>
<!-- <article></article> -->
<?php
}
}
?>
</section>
<?php
$content = ob_get_clean();
|