-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.php
50 lines (36 loc) · 866 Bytes
/
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
<?php
//include the db
require_once('Connections/dbDescent.php');
//initialize the session
if (!isset($_SESSION)) {
session_start();
}
//include functions
include 'includes/function_logout.php';
include 'includes/function_getSQLValueString.php';
include 'includes/function_createProgressBar.php';
?>
<html>
<head><?php
$pagetitle = "Home";
include 'head.php'; ?>
</head>
<body class="white"><?php
$front = 1;
include 'navbar.php';
include 'homepage_data.php';
include 'banner.php';
include 'homepage_stats.php';
include 'homepage_block1.php'; ?>
<div class="container grey"><?php
include 'campaign.php'; ?>
</div><?php
include 'homepage_block2.php';
include 'homepage_changelog.php'; ?>
<div class="dark-grey">
<div class="container footer"><?php
include 'footer.php'; ?>
</div>
</div>
</body>
</html>