-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
55 lines (32 loc) · 1.04 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
<?php
require_once("core/config.php");
require_once("core/slave.php");
require_once("langs/".$config["lang"].".php");
require_once("core/functions.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include("parts/header.php"); ?>
</head>
<body class="demo-box" data-role="gradient-box" data-gradient-type="radial" data-gradient-size="farthest-corner" data-gradient-position="40px 40px" data-gradient-colors="#f35 0%, #43e 100%">
<div>
<div class="se-pre-con">
<center>
<div data-role="cube"></div>
</center>
</div>
<div id="after" style="display:none" class="container">
<div class="row">
<div class="cell-3">
<?php include("parts/menu.php"); ?>
</div>
<div class="cell-9">
<?php include("pages/$rPage.php"); ?>
</div>
</div>
</div>
</div>
<?php include("parts/footer.php"); // FOOTER, NOTHING BELOW THIS! ?>
</body>
</html>