forked from libsdl-org/sdlweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TEMPLATE.php
54 lines (48 loc) · 1.61 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
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title>Simple DirectMedia Layer<?php /* - TITLE */ ?></title>
<?php require_once("include/meta.inc.php"); ?><?php $current_page = basename(__FILE__, '.php'); ?>
</head>
<body>
<div id="wrapper">
<?php require_once("include/header.inc.php"); ?>
<div id="left">
<?php require_once("include/sidebar.inc.php"); ?>
</div>
<div id="content">
<h1>
<?php /* HEADLINE */ ?>
</h1>
<?php /*
*
*
* ANY DESIRED CONTENT
*
*
* */ ?>
<?php /*
*
*
* You need two columns?
* Use this:
*
* <div class="col left">
*
* </div>
*
* <!-- and -- >
*
* <div class="col right">
*
* </div>
*
* <div class="clearer"></div>
*
* */ ?>
</div>
<div class="clearer"></div>
</div>
<?php require_once("include/footer.inc.php"); ?>
</body>
</html>