-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsong.php
66 lines (53 loc) · 1.08 KB
/
song.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
require_once "config/config.inc";
$song = new Song($_GET['id']);
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta author="Antoine Mady">
<title><?php print TITLE; ?></title>
<?php
require_once "sections/links.php";
?>
</head>
<body onload="javascript:displaySliders();">
<?php require_once "sections/menu.php"; ?>
<section class="container">
<div class="row padded">
<div class="col-md-12">
<?php
require_once "sections/song_header.php";
?>
</div>
</div>
<div class="row padded">
<div class="col-md-7">
<div class="row">
<div class="col-md-12">
<?php
require_once "sections/song_albums.php";
?>
</div>
</div>
<div class="row">
<div class="col-md-12">
<?php
require_once "sections/song_lyrics.php";
?>
</div>
</div>
</div>
<div class="col-md-5">
<?php
require_once "sections/song_comments.php";
?>
</div>
</div>
</section>
<?php
require_once "sections/js.php";
?>
</body>
</html>