-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
92 lines (47 loc) · 1.59 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
91
92
<?php session_start(); include("core.php"); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<?php title(); ?>
<meta name="Generator" content="Gowon Designs CMS 1" />
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="?rss" />
</head>
<body>
<div class="outer-container">
<div class="inner-container">
<div class="header">
<div class="title">
<span class="sitename"><a href="?"><?php value('title'); ?></a></span>
<div class="slogan"><?php value('slogan'); ?></div>
</div>
</div>
<div class="division">
<span style="float: left;"><?php breadcrumbs(); ?></span>
<?php search(); ?>
</div>
<div class="main">
<div class="content">
<?php content(); ?>
</div>
<div class="sidebar">
<div class="navigation">
<?php menu('main'); ?>
</div>
<?php extra('sidebar'); ?>
</div>
<div class="clearer"> </div>
</div>
<div class="footer">
<span class="left">
© 2009 <a href="?"><?php value('title'); ?></a> · Valid <a href="http://validator.w3.org/check?uri=referer">XHTML</a> & <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a> · Powered by <a href="http://leap.gowondesigns.com/">GDCMS</a> <?php value('version'); ?>
</span>
<span class="right">
<?php login(); ?>
</span>
<div class="clearer"></div>
</div>
</div>
</div>
</body>
</html>