-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·94 lines (82 loc) · 2.23 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
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
86
87
88
89
90
91
92
93
94
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
Glipple
</title>
<?php include "./header.php"; ?>
</head>
<body>
<!--
<div class="debug-helper-box">
DEBUG HELPER: you are in the view: <?php echo $filename; ?>
</div>
-->
<table width="100%">
<tr>
<td>
<div class='title-box'>
<img id="logo" class="link" src="<?php echo URL; ?>public/img/logoAlpha.png" WIDTH="238px" HEIGHT="100px" alt="Glipple" />
</div>
</td>
<td id="slogan">
Music: Free. Legal. Easy.
</td>
<td>
<?php include "views/radio.php"; ?>
</td></tr></table>
<!--
<div class="search-bar">
<form id="searchbar">
<input type="text" placeholder="Search for Title, Artist, Album, or Genre" id="s" onkeyup="loadsearchresults(this.value)"><br>
</form>
</div>
-->
<div class="clear-both"></div>
<div class="header">
<div class="header_left_box">
<ul class="menu">
<li>
<a href="#" id="blog" class="link">Blog</a>
</li>
<li>
<a href="#" id="faqs" class="link">FAQ's</a>
</li>
</ul>
</div>
<div class="header_right_box">
<div class="login-access-box">
<a href="<?php echo URL; ?>login" >Login/Register</a>
</div>
</div>
<div class="clear-both"></div>
</div>
<div class="content">
<div id="filler"></div>
</div>
<!-- content filler AJAX js -->
<script type="text/javascript" src="<?php echo URL; ?>public/js/content.js"></script>
<div class="footer">
<div class="footer_left_box">
<ul class="menu">
<li>
<a href="#" id="legal" class="link">Legal</a>
</li>
<li>
<a href="#" id="contact" class="link">Contact</a>
</li>
</ul>
</div>
<div class="footer_right_box">
<div class="copyright-box">
<span class="tos-box">Use of glipple.com is in accordance with our <a href="#" id="tospp" class="link">Terms of Service</a></span> © Glipple Inc 2015
</div>
</div>
<div class="clear-both"></div>
</div>
</body>
</html>