-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
43 lines (38 loc) · 1.86 KB
/
index.php
File metadata and controls
43 lines (38 loc) · 1.86 KB
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
<?php
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# #
# Project Alpha #
# #
# This file is part of Project Alpha, a PHP rewrite of the #
# NSWJLPS system. This project is designed to run on any #
# standard implementation of PHP with SQLite. #
# #
# Do not copy or distribute any portion of this file without #
# permission from the original authors. #
# #
# Copyright 2012 Benjamin Civitico, Blair Hudson, Nicholas #
# Reynolds & Anthony Wales. #
# #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
require_once("config.php");
require_once($config["classes"] . "session.class.php");
require_once($config["classes"] . "sqlite_db.class.php");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>NSWJLPS</title>
<link href="page_resources/css/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="center">
<div id="header"></div>
<div id="navigation"><?php require_once $config["templates"] . "top_nav.php" ?></div>
<div id="container">
<div id="sidenav"><?php require_once $config["templates"] . "side_nav.php" ?></div>
<div id="content"><?php require_once $config["templates"] . "content.php" ?></div>
</div>
<div id="footer"> © 2012 Team Alpha - All Rights Reserved</div>
</div>
</body>