Project

General

Profile

1
<?php
2

    
3
// $Id: index.php 452 2007-04-30 12:40:01Z Ruebenwurzel $
4

    
5
/*
6

    
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2007, Ryan Djurovich
9

    
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
if(!defined('WB_URL')) {
27
	header('Location: ../index.php');
28
	exit(0);
29
}
30

    
31
?>
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
<meta http-equiv="Content-Type" content="text/html; charset=<?php if(defined('DEFAULT_CHARSET')) { echo DEFAULT_CHARSET; } else { echo 'utf-8'; }?>" />
37
<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
</head>
42
<body>
43

    
44
<div class="main">
45
	
46
	<div class="banner">
47
		<a href="<?php echo WB_URL; ?>/" target="_top"><?php echo WEBSITE_TITLE; ?></a>
48
		<font color="#D0D0D0">| <?php echo PAGE_TITLE; ?></font>
49
	</div>
50
	
51
	<div class="search_box">
52
		<?php if(SHOW_SEARCH) { ?>
53
		<form name="search" action="<?php echo WB_URL.'/search/index'.PAGE_EXTENSION; ?>" method="get">
54
		<input type="text" name="string" class="search_string" />
55
		<input type="submit" name="submit" value="<?php echo $TEXT['SEARCH']; ?>" class="search_submit" />
56
		</form>
57
		<?php } ?>
58
	</div>
59
	
60
	<?php
61
	// Only show menu items if we are supposed to
62
	if(SHOW_MENU) {
63
	?>	
64
	<div class="menu">
65
		<?php page_menu(0, 1, '<li class="menu_main"[class]>[a] [menu_title] [/a]</li>', '<ul>', '</ul>', '', ' style="font-weight: bold;"'); ?>
66
		
67
		<?php
68
		if(FRONTEND_LOGIN == 'enabled' AND VISIBILITY != 'private' AND $wb->get_session('USER_ID') == '') {
69
		?>
70
		<form name="login" action="<?php echo LOGIN_URL; ?>" method="post" class="login_table">
71
			<h1><?php echo $TEXT['LOGIN']; ?></h1>
72
			<?php echo $TEXT['USERNAME']; ?>:
73
			<input type="text" name="username" style="text-transform: lowercase;" />
74
			<?php echo $TEXT['PASSWORD']; ?>:
75
			<input type="password" name="password" />
76
			<input type="submit" name="submit" value="<?php echo $TEXT['LOGIN']; ?>" style="margin-top: 3px; text-transform: uppercase;" />
77
			<a href="<?php echo FORGOT_URL; ?>"><?php echo $TEXT['FORGOT_DETAILS']; ?></a>
78
				<?php if(is_numeric(FRONTEND_SIGNUP)) { ?>
79
					<a href="<?php echo SIGNUP_URL; ?>"><?php echo $TEXT['SIGNUP']; ?></a>
80
				<?php } ?>
81
		</form>
82
		<?php
83
		} elseif(FRONTEND_LOGIN == 'enabled' AND is_numeric($wb->get_session('USER_ID'))) {
84
		?>
85
		<form name="logout" action="<?php echo LOGOUT_URL; ?>" method="post" class="login_table">
86
			<h1><?php echo $TEXT['LOGGED_IN']; ?></h1>
87
			<?php echo $TEXT['WELCOME_BACK']; ?>, <?php echo $wb->get_display_name(); ?>
88
			<br />
89
			<input type="submit" name="submit" value="<?php echo $MENU['LOGOUT']; ?>" />
90
			<br />
91
			<a href="<?php echo PREFERENCES_URL; ?>"><?php echo $MENU['PREFERENCES']; ?></a>
92
			<a href="<?php echo ADMIN_URL; ?>/index.php"><?php echo $TEXT['ADMINISTRATION']; ?></a>
93
		</form>
94
		<?php
95
		}
96
		?>
97
	</div>
98
	<?php } ?>
99
	
100
	<div class="content">
101
		<?php page_content(); ?>
102
	</div>
103
	
104
	<div class="footer">
105
		<?php page_footer(); ?>
106
	</div>
107
	
108
</div>
109

    
110
<div class="powered_by">
111
	Powered by <a href="http://www.websitebaker.org" target="_blank">Website Baker</a>
112
</div>
113

    
114
</body>
115
</html>
(4-4/7)