forked from nitcalicut/Paathshaala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
44 lines (40 loc) · 992 Bytes
/
search.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
<!DOCTYPE HTML>
<html>
<head>
<title>Paathshaala Search</title>
<?php
include 'source.php';
echo $header;
?>
<script type='text/javascript'>
$(document).ready(function() {
var q = getUrlVars()['q'];
var tag = getUrlVars()['tag'];
update( q , tag ,++activePage);
});
</script>
<link rel="stylesheet" href="css/video.css" />
<link rel="stylesheet" href="css/search.css" />
</head>
<body>
<div id='topbar'></div>
<img src="pics/load.gif" id='loading' style='display:none;'>
<div id='container'>
<?php echo $topNotLoggedIn;
echo $feedback; ?>
<div class='mainLeft'>
<span class='smallSubtitle'>Search Results</span>
<div id=findStuff></div>
<div id='ShowNext'> Show more results.</div>
<div id=next></div>
</div>
<div class='mainRight'>
</div>
</div><!-- /container -->
<?php echo $bottomBar; ?>
<div id="bottombar"></div>
<script src='js/ui.js' type='text/javascript' ></script>
<script src='js/search.js' type='text/javascript' ></script>
<?php echo $piwik; ?>
</body>
</html>