Line | |
---|
1 | <div class="bloc"> |
---|
2 | |
---|
3 | <?php |
---|
4 | |
---|
5 | # -------------------------------------------------------------------------------------- |
---|
6 | # si un identifiant d'artiste est précisé, on affiche la fiche artiste |
---|
7 | if(isset($_GET[$env->param("artiste")])) : |
---|
8 | |
---|
9 | ?> |
---|
10 | |
---|
11 | <h2><?= $env->out["artiste"]["nom"] ?></h2> |
---|
12 | <div class="bloc_content"> |
---|
13 | |
---|
14 | <?php require $env->out_file("views/artiste_onglets.php") ?> |
---|
15 | |
---|
16 | <div id="artiste_left"> |
---|
17 | |
---|
18 | <?php require $env->out_file("views/artiste_colonne.php"); ?> |
---|
19 | |
---|
20 | </div> |
---|
21 | <div id="artiste_right"> |
---|
22 | |
---|
23 | <?php |
---|
24 | |
---|
25 | if($env->page === "presentation") require $env->out_file("content/artistes/presentation.php"); |
---|
26 | elseif($env->page === "news") require $env->out_file("content/artistes/news.php"); |
---|
27 | elseif($env->page === "downloads") require $env->out_file("content/artistes/downloads.php"); |
---|
28 | elseif($env->page === "contact") require $env->out_file("content/artistes/contact.php"); |
---|
29 | |
---|
30 | ?> |
---|
31 | </div> |
---|
32 | |
---|
33 | <div class="clear"><!-- --></div> |
---|
34 | </div> |
---|
35 | |
---|
36 | <?php |
---|
37 | |
---|
38 | # -------------------------------------------------------------------------------------- |
---|
39 | # si aucun identifiant d'artiste n'est précisé, on affiche la liste des artistes |
---|
40 | else : require $env->out_file("content/artistes/artistes.php"); |
---|
41 | endif; |
---|
42 | |
---|
43 | ?> |
---|
44 | |
---|
45 | </div> |
---|
Note: See
TracBrowser
for help on using the repository browser.