Project

General

Profile

1 4 ryan
<?php
2
3 395 Ruebenwurz
// $Id$
4 4 ryan
5
/*
6
7
 Website Baker Project <http://www.websitebaker.org/>
8 519 Ruebenwurz
 Copyright (C) 2004-2008, Ryan Djurovich
9 4 ryan
10
 Website Baker is free software; you can redistribute it and/or modify
11
 it under the terms of the GNU General Public License as published by
12
 the Free Software Foundation; either version 2 of the License, or
13
 (at your option) any later version.
14
15
 Website Baker is distributed in the hope that it will be useful,
16
 but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 GNU General Public License for more details.
19
20
 You should have received a copy of the GNU General Public License
21
 along with Website Baker; if not, write to the Free Software
22
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23
24
*/
25
26 395 Ruebenwurz
if(!defined('WB_URL')) {
27
	header('Location: ../index.php');
28
	exit(0);
29
}
30
31 4 ryan
?>
32
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
33
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
34
<head>
35
<title><?php page_title(); ?></title>
36 256 ryan
<meta http-equiv="Content-Type" content="text/html; charset=<?php if(defined('DEFAULT_CHARSET')) { echo DEFAULT_CHARSET; } else { echo 'utf-8'; }?>" />
37 4 ryan
<meta name="description" content="<?php page_description(); ?>" />
38
<meta name="keywords" content="<?php page_keywords(); ?>" />
39
<link href="<?php echo TEMPLATE_DIR; ?>/screen.css" rel="stylesheet" type="text/css" media="screen" />
40
<link href="<?php echo TEMPLATE_DIR; ?>/print.css" rel="stylesheet" type="text/css" media="print" />
41 458 doc
<?php
42 691 doc
// this allows to include the optional module files (frontend.css, frontend.js) into the head section
43 458 doc
if(function_exists('register_frontend_modfiles')) {
44
  register_frontend_modfiles('css');
45
  register_frontend_modfiles('js');
46
} ?>
47 691 doc
<?php
48
// this allows to add custom information to the head section of your template (WB-->Settings-->Website Header)
49
echo WEBSITE_HEADER;
50
?>
51 4 ryan
</head>
52
<body>
53
54
<table cellpadding="5" cellspacing="0" border="0" width="750" align="center">
55
<tr>
56
	<td colspan="2" class="header">
57
		<?php page_title('','[WEBSITE_TITLE]'); ?>
58
	</td>
59
</tr>
60
<tr>
61
	<td colspan="2" class="footer">
62
		&nbsp;
63
	</td>
64
</tr>
65
<tr>
66
	<td class="menu">
67
		<?php if(SHOW_MENU) { /* Only shown menu if we need to */ ?>
68
			Menu: <br />
69 691 doc
			<?php show_menu(); ?>
70 4 ryan
		<?php } ?>
71
72
		<?php if(SHOW_SEARCH) { /* Only show search box if search is enabled */ ?>
73
			<br />
74
			Search: <br />
75 540 Ruebenwurz
			<form name="search" action="<?php echo WB_URL; ?>/search/index.php" method="get">
76 4 ryan
				<input type="text" name="string" style="width: 100%;" />
77 440 Ruebenwurz
				<input type="submit" name="submit" value="<?php echo $TEXT['SEARCH']; ?>" style="width: 100%;" />
78 4 ryan
			</form>
79
		<?php } ?>
80
81
		<br />
82
		<a href="http://www.websitebaker.org" target="_blank">Powered by <br /> Website Baker</a>
83
	</td>
84
	<td class="content">
85
		<?php page_content(); ?>
86
	</td>
87
</tr>
88
<tr>
89
	<td colspan="2" class="footer">
90
		<?php page_footer(); ?>
91
	</td>
92
</tr>
93
</table>
94
95
</body>
96
</html>