-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·44 lines (38 loc) · 1.33 KB
/
index.php
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
<?php include __DIR__.'/includes/Front/header.php' ?>
<?php include __DIR__.'/includes/Front/navbar.php' ?>
<?php include __DIR__.'/includes/Front/jumbo.php' ?>
<div class="mainbase">
<?php if (isset($_SESSION['current']['current_playlist']) && !empty($_SESSION['current']['current_playlist'])) {?>
<div class="fullmenu">
<div class="mainmenu">
<?php display_menu(); ?>
</div>
<div class="handle"><span class="glyphicon glyphicon-list"></span></div>
</div>
<?php } ?>
<div class="container mainview">
<?php
if (isset($_SESSION['current']['current_playlist']))
{
display_playlist($_SESSION['current']['current_playlist']);
if (isset($_SESSION['current']['all_playlist'][0]))
{
?>
<form action="index.php" method="post" >
<input type="submit" value="Another Playlist ?" name="next" class="btn btn-group-md pull-right">
</form>
<?php }
} ?>
<div class="clearfix"></div>
<footer>
<hr>
<p>© fdabiel, mgaspail, jburet. @42</p>
</footer>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.0.min.js"><\/script>')</script>
<script src="js/vendor/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>