Project

General

Profile

1 4 ryan
<?php
2 865 doc
/**
3
 * $Id$
4
 * Website Baker template: allcss
5
 * This template is one of four basis templates distributed with Website Baker.
6
 * Feel free to modify or build up on this template.
7
 *
8
 * This file contains the overall template markup and the Website Baker
9
 * template functions to add the contents from the database.
10
 *
11
 * LICENSE: GNU General Public License
12
 *
13
 * @author     Ryan Djurovich, C. Sommer
14
 * @copyright  GNU General Public License
15
 * @license    http://www.gnu.org/licenses/gpl.html
16
 * @version    2.70
17
 * @platform   Website Baker 2.7
18
 *
19
 * Website Baker is free software; you can redistribute it and/or modify
20
 * it under the terms of the GNU General Public License as published by
21
 * the Free Software Foundation; either version 2 of the License, or
22
 * (at your option) any later version.
23
 *
24
 * Website Baker is distributed in the hope that it will be useful,
25
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27
 * GNU General Public License for more details.
28 4 ryan
*/
29
30 865 doc
// prevent this file from being accessed directly
31
if (!defined('WB_PATH')) die(header('Location: ../../index.php'));
32 395 Ruebenwurz
33 865 doc
// TEMPLATE CODE STARTS BELOW
34 4 ryan
?>
35 865 doc
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
36
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
37 4 ryan
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
38
<head>
39 865 doc
	<meta http-equiv="Content-Type" content="text/html; charset=<?php
40
	echo defined('DEFAULT_CHARSET') ? DEFAULT_CHARSET : 'utf-8'; ?>" />
41
	<meta name="description" content="<?php page_description(); ?>" />
42
	<meta name="keywords" content="<?php page_keywords(); ?>" />
43
	<?php
44
	// automatically include optional WB module files (frontend.css, frontend.js)
45
	if (function_exists('register_frontend_modfiles')) {
46
		register_frontend_modfiles('css');
47
		register_frontend_modfiles('js');
48
	} ?>
49
	<link rel="stylesheet" type="text/css" href="<?php
50
	echo TEMPLATE_DIR; ?>/template.css" media="screen,projection" />
51
	<link rel="stylesheet" type="text/css" href="<?php
52
	echo TEMPLATE_DIR; ?>/print.css" media="print" />
53
	<title><?php page_title('', '[WEBSITE_TITLE]'); ?></title>
54 4 ryan
</head>
55 865 doc
56 4 ryan
<body>
57
58
<div class="main">
59
60
	<div class="banner">
61 865 doc
		<a href="<?php echo WB_URL; ?>/" target="_top"><?php page_title('', '[WEBSITE_TITLE]'); ?></a>
62
		<span>| <?php page_title('', '[PAGE_TITLE]'); ?></span>
63 4 ryan
	</div>
64
65 865 doc
	<!-- frontend search -->
66 4 ryan
	<div class="search_box">
67 865 doc
		<?php
68
		// CODE FOR WEBSITE BAKER FRONTEND SEARCH
69
		if (SHOW_SEARCH) { ?>
70
			<form name="search" action="<?php echo WB_URL; ?>/search/index.php" method="get">
71
				<input type="hidden" name="referrer" value="<?php
72
				echo defined('REFERRER_ID') ? REFERRER_ID : PAGE_ID; ?>" />
73
				<input type="text" name="string" class="search_string" />
74
				<input type="submit" name="wb_search" id="wb_search" value="<?php
75
				echo $TEXT['SEARCH']; ?>" class="search_submit" />
76
			</form><?php
77
		} ?>
78 4 ryan
	</div>
79 865 doc
80
	<!-- main navigation menu -->
81 4 ryan
	<div class="menu">
82 865 doc
		<?php show_menu(1, 0, -1, true,
83
			'<li><span [class]>[a][menu_title][/a]</span>', '</li>',
84
			'<ul>', '</ul>', 'class="menu_default"', 'class="menu_current"', 0
85
			);
86
		?>
87 4 ryan
88
		<?php
89 865 doc
		// CODE FOR WEBSITE BAKER FRONTEND LOGIN
90
		if (FRONTEND_LOGIN == 'enabled' && VISIBILITY != 'private'
91
			&& $wb->get_session('USER_ID') == '') { ?>
92
			<!-- login form -->
93 4 ryan
			<br />
94 865 doc
			<form name="login" id="login" action="<?php echo LOGIN_URL; ?>" method="post">
95
				<fieldset>
96
					<legend><?php echo $TEXT['LOGIN']; ?></legend>
97
					<label for="username" accesskey="1"><?php echo $TEXT['USERNAME']; ?>:</label>
98
					<input type="text" name="username" id="username" style="text-transform: lowercase;" /><br />
99
					<label for="password" accesskey="2"><?php echo $TEXT['PASSWORD']; ?>:</label>
100
					<input type="password" name="password" id="password" /><br />
101
					<input type="submit" name="wb_login" id="wb_login" value="<?php echo $MENU['LOGIN']; ?>"/><br />
102
103
					<!-- forgotten details link -->
104
					<a href="<?php echo FORGOT_URL; ?>"><?php echo $TEXT['FORGOT_DETAILS']; ?></a>
105
106
					<!-- frontend signup -->
107
					<?php
108
					if (is_numeric(FRONTEND_SIGNUP)) { ?>
109
						<a href="<?php echo SIGNUP_URL; ?>"><?php echo $TEXT['SIGNUP']; ?></a>
110
					<?php } ?>
111
				</fieldset>
112
			</form>
113
114
		<?php
115
		} elseif (FRONTEND_LOGIN == 'enabled' && is_numeric($wb->get_session('USER_ID'))) { ?>
116
			<!-- logout form -->
117 4 ryan
			<br />
118 865 doc
			<form name="logout" id="logout" action="<?php echo LOGOUT_URL; ?>" method="post">
119
				<fieldset>
120
					<legend><?php echo $TEXT['LOGGED_IN']; ?>:</legend>
121
					<?php echo $TEXT['WELCOME_BACK']; ?>, <?php echo $wb->get_display_name(); ?>
122
					<input type="submit" name="wb_logout" id="wb_logout" value="<?php echo $MENU['LOGOUT']; ?>" />
123
					<!-- edit user preferences -->
124
					<a href="<?php echo PREFERENCES_URL; ?>"><?php echo $MENU['PREFERENCES']; ?></a>
125
				</fieldset>
126
			</form>
127
		<?php
128
		} ?>
129 4 ryan
	</div>
130
131
	<div class="content">
132
		<?php page_content(); ?>
133
	</div>
134
135
	<div class="footer">
136
		<?php page_footer(); ?>
137
	</div>
138
139
</div>
140
141
<div class="powered_by">
142
	Powered by <a href="http://www.websitebaker.org" target="_blank">Website Baker</a>
143
</div>
144 1106 Ruebenwurz
<?php
145
// automatically include optional WB module file frontend_body.js)
146
if (function_exists('register_frontend_modfiles_body')) { register_frontend_modfiles_body(); }
147
?>
148 4 ryan
</body>
149
</html>