-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathresult.php
89 lines (83 loc) · 1.79 KB
/
result.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
<?php
require_once "config/config.inc";
isset($_GET['q']) && empty( $_GET['q']) && Page::go404();
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta author="Jérôme Boesch">
<title>
<?php print TITLE; ?>
</title>
<?php
require_once "sections/links.php";
?>
</head>
<body>
<?php require_once "sections/menu.php"; ?>
<section class="container">
<div class="row">
<div class="col-md-3">
<div class="alizarin">
<h3 class="padded">Songs</h3>
<hr>
<p class="padded">
<?php
foreach($search_songs as $song):
print '<a href="'.$song->getUrl().'">';
print $song . "</a><br>";
endforeach;
?>
</p>
</div>
</div>
<div class="col-md-3">
<div class="peter-river">
<h3 class="padded">Artists</h3>
<hr>
<p class="padded">
<?php
foreach($search_artists as $artist):
print '<a href="'.$artist->getUrl().'">';
print $artist . "</a><br>";
endforeach;
?>
</p>
</div>
</div>
<div class="col-md-3">
<div class="nephritis">
<h3 class="padded">Albums</h3>
<hr>
<p class="padded">
<?php
foreach($search_albums as $album):
print '<a href="'.$album->getUrl().'">';
print $album . "</a><br>";
endforeach;
?>
</p>
</div>
</div>
<div class="col-md-3">
<div class="carrot">
<h3 class="padded">Users</h3>
<hr>
<p class="padded">
<?php
foreach($search_users as $user):
print '<a href="'.$user->getUrl().'">';
print $user . "</a><br>";
endforeach;
?>
</p>
</div>
</div>
</div>
</section>
<?php
require_once "sections/js.php";
?>
</body>
</html>