-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
42 lines (27 loc) · 713 Bytes
/
index.php
File metadata and controls
42 lines (27 loc) · 713 Bytes
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
<!DOCTYPE html>
<html>
<head>
<?php include("inc/meta.php"); ?>
<Title>
<?php include("inc/page-index.php"); ?>
</Title>
<?php include("inc/stylesheet.php"); ?>
<?php include("inc/head.php"); ?>
</head>
<body>
<?php include("inc/background-image.php"); ?>
<div id="container">
<?php include("inc/header.php"); ?>
<?php include("inc/widemenu.php"); ?>
<?php include("inc/sidebar-left.php"); ?>
<div id="content">
<?php include("inc/plugin01.php"); ?>
<p>This is the index page which can be viewed by the public.</p>
<?php include("inc/plugin02.php"); ?>
</div>
<?php include("inc/sidebar-right.php"); ?>
<?php include("inc/footer.php"); ?>
</div>
<?php include("inc/scripts.php"); ?>
</body>
</html>