forked from blinx-org/blinx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
48 lines (48 loc) · 1.61 KB
/
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
44
45
46
47
48
<?php
include_once './libs/const.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php
$_TITLE = "Blinx Home page";
include_once './tags/common/head.php';
?>
<?php include './tags/search/search-scripts.php'; ?>
</head>
<body>
<?php include_once './tags/global_header/header.php'; ?>
<!-- begin:slider -->
<div class="sr-topbar"></div>
<!-- begin:tagline -->
<div class="container">
<?php include './tags/search/search-header.php'; ?>
<div class="sr-topbar2"></div>
<?php include './tags/search/search-tool.php'; ?>
<div class="row">
<div class="col-sm-4 hidden-xs">
<div class="sr-refine">
<?php include './tags/search/search-refine.php'; ?>
</div>
</div>
<div class="col-xs-12 col-sm-8">
<div>
<?php include './tags/search/search-listing.php'; ?>
</div>
</div>
</div>
</div>
<div class="sr-topbar2"></div>
<!-- end:tagline -->
<?php include_once './tags/global_header/footer.php'; ?>
<!-- end:copyright -->
<?php include_once './tags/common/scripts.php'; ?>
<script type="text/javascript">
$(document).ready(function () {
$("[toggle-btn]").click(function () {
$('[pannel=' + $(this).attr('toggle-btn') + ']').collapse('toggle');
});
});
</script>
</body>
</html>