-
Notifications
You must be signed in to change notification settings - Fork 2
/
searchApps.php
45 lines (43 loc) · 1015 Bytes
/
searchApps.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
<?php
include_once('./includes/common.functions.php');
?>
<!DOCTYPE HTML>
<html>
<head>
<title>Search</title>
<link rel="stylesheet" href="./styles/bootstrap.css" type="text/css"/>
<link rel="stylesheet" href="./styles/bootstrap_custom.css" type="text/css"/>
<link rel="stylesheet" href="./styles/mainStyle.css" type="text/css"/>
</head>
<body>
<div id="upperPanel">
<?php
include_once('./layout/upperBar.php');
//include_once('./layout/searchPanel.php');
?>
</div>
<div class=" container">
<?php
include_once('./layout/searchPanel.php');
?>
<div id="wrapper" class="row">
<div id="content">
<?php
include_once ('searchProviders.php');
?>
</div>
<div class="row">
<div class="col col-md-4 col-md-offset-4">
<?php
include_once('./layout/topDownloadsBar.php');
?>
</div>
</div>
</div></div>
<?php
include_once('./layout/footerBar.php');
?>
<script type="text/javascript" src="./js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="./js/bootstrap.js"></script>
</body>
</html>