-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
54 lines (50 loc) · 1.21 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
<?php
include_once('./includes/common.functions.php');
include_once('./includes/login.functions.php');
?>
<!DOCTYPE HTML>
<html>
<head>
<title>Free Apps Store</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="leftSideBar" class="col col-md-2">
<?php
include_once('./platforms.php');
include_once('./categories.php');
?>
</div>
<div id="content" class="col col-md-7">
<?php
include_once('./appsProvider.php');
?>
</div>
<div id="sideBars" class="col col-md-3">
<?php
include_once('./layout/topDownloadsBar.php');
include_once('./layout/recentAppsList.php');
?>
</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>