-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.php
executable file
·46 lines (36 loc) · 1.09 KB
/
template.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<!-- Page dependent settings such as settitle -->
<?php
require_once("deps/session.inc");
require_once("deps/presentation.inc");
require_once("deps/database.inc");
$title = settitle(__HOMEPAGE);
$thisPage = __HOMEPAGE;
?>
<head>
<!-- Global head attributes and scripts (JQuery, etc.) -->
<?php require_once('templates/head.inc') ?>
<!-- Page-specific head attributes -->
</head>
<body>
<!-- Below should remain as is on every page -->
<div id="title">
<?php require_once('templates/layout/title.php'); ?>
</div>
<div id="language">
<?php require_once('templates/layout/language.php'); ?>
</div>
<div id="navigation">
<?php require_once('templates/layout/navigation.php'); ?>
</div>
<!-- Above should remain as is on every page -->
<div id="content">
</div>
<!-- Below should remain as is on every page -->
<div id="footer">
<?php require_once('templates/layout/footer.php'); ?>
</div>
<!-- Above should remain as is on every page -->
</body>
</html>