-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·90 lines (76 loc) · 3.7 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
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
90
<?php
/*
WebMole, an automated explorer and tester for Web 2.0 applications
Copyright (C) 2012-2013 Gabriel Le Breton, Fabien Maronnaud,
Sylvain Hallé et al.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* This is to prevent direct access to other php files */
$access = 'authorized';
/* Supercharge application with configs! */
require_once(dirname(__FILE__) . "/lib/init.php");
?>
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Ajax Listing Generator</title>
<meta name="description" content="Ajax Listing Generator">
<meta name="viewport" content="width=device-width">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<?php if(CSS_ENABLED) : ?>
<link rel="stylesheet" href="assets/css/normalize.css">
<link rel="stylesheet" href="assets/css/main.css">
<link href="//netdna.bootstrapcdn.com/bootswatch/2.3.2/united/bootstrap.min.css" rel="stylesheet">
<?php endif; ?>
<script src="assets/js/vendor/modernizr-2.6.2.min.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<?php if (WRAPPER_ENABLED && WRAPPER_HEADER) require_once(dirname(__FILE__) . "/wrapper/header.php"); ?>
<div class="container">
<div class="row">
<?php
if (WRAPPER_ENABLED && WRAPPER_SIDEBAR)
{
?>
<div class="sidebar span4">
<?php require_once(dirname(__FILE__) . "/wrapper/sidebar.php"); ?>
</div>
<div class="content span8">
<?php
}
else
{
?>
<div class="content span12">
<?php
}
require_once("lib/content.php");
?>
</div>
</div>
</div>
<?php if (WRAPPER_ENABLED && WRAPPER_FOOTER) require_once(dirname(__FILE__) . "/wrapper/footer.php"); ?>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.9.1.min.js"><\/script>')</script>
<script src="assets/js/plugins.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>