1<?php
2if (!defined('WEBPATH'))
3	die();
4?>
5<!DOCTYPE html>
6<html<?php printLangAttribute(); ?>>
7	<head>
8		<meta charset="<?php echo LOCAL_CHARSET; ?>">
9		<?php zp_apply_filter('theme_head'); ?>
10		<?php printHeadTitle(); ?>
11		<link rel="stylesheet" href="<?php echo $_zp_themeroot ?>/zen.css" type="text/css" />
12<?php if (class_exists('RSS')) printRSSHeaderLink('Gallery', gettext('Gallery RSS')); ?>
13	</head>
14	<body class="sidebars">
15<?php zp_apply_filter('theme_body_open'); ?>
16		<div id="navigation"></div>
17		<div id="wrapper">
18			<div id="container">
19				<div id="header">
20					<div id="logo-floater">
21						<div>
22							<h1 class="title">
23								<a href="<?php echo html_encode(getSiteHomeURL()); ?>" title="<?php echo gettext('Gallery Index'); ?>"><?php echo html_encode(getGalleryTitle()); ?></a>
24							</h1>
25							<span id="galleryDescription"><?php printGalleryDesc(); ?></span>
26						</div>
27					</div>
28				</div><!-- header -->
29				<div class="sidebar">
30					<div id="leftsidebar">
31<?php include("sidebar.php"); ?>
32					</div>
33				</div>
34				<div id="center">
35					<div id="squeeze">
36						<div class="right-corner">
37							<div class="left-corner"><!-- begin content -->
38								<div class="main section" id="main">
39									<h2 id="gallerytitle"><?php printHomeLink('', ' » '); ?><?php printGalleryTitle(); ?></h2>
40									<?php printCodeblock(1); ?>
41									<?php commonNewsLoop(false); ?>
42									<p style="clear: both;"></p>
43									<?php printCodeblock(2); ?>
44<?php footer(); ?>
45								</div><!-- main -->
46								<span class="clear"></span>
47							</div><!-- left corner -->
48						</div><!-- right corner -->
49					</div><!-- squeeze -->
50				</div><!-- center -->
51				<div class="sidebar">
52					<div id="rightsidebar">
53						<?php
54						if (function_exists('printLatestImages')) {
55							?>
56							<h2><?php echo gettext('Latest Images'); ?></h2>
57							<?php
58							printImageStatistic(7, "latest");
59						}
60						?>
61					</div><!-- right sidebar -->
62				</div><!-- sidebar -->
63				<span class="clear"></span>
64			</div><!-- container -->
65		</div><!-- wrapper -->
66		<?php
67		zp_apply_filter('theme_body_close');
68		?>
69	</body>
70</html>
71