2008-11-03 05:53:20 +00:00
|
|
|
<? defined("SYSPATH") or die("No direct script access."); ?>
|
2008-11-07 06:44:36 +00:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Tranisitional//EN"
|
2008-11-07 05:03:00 +00:00
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2008-11-03 05:53:20 +00:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
2008-11-26 21:50:45 +00:00
|
|
|
<title>
|
|
|
|
|
<? if ($page_type == "tag"): ?>
|
|
|
|
|
<?= _("Browse Tags") ?> :: <?= $tag->name ?>
|
|
|
|
|
<? else: ?>
|
|
|
|
|
<?= _("Browse Photos") ?> :: <?= $item->title ?>
|
|
|
|
|
<? endif ?>
|
|
|
|
|
</title>
|
2008-11-09 18:54:17 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="<?= url::file("lib/yui/reset-fonts-grids.css") ?>"
|
|
|
|
|
media="screen,print,projection" />
|
2008-11-15 06:23:09 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="<?= $theme->url("css/screen.css") ?>"
|
2008-11-09 23:03:50 +00:00
|
|
|
media="screen,print,projection" />
|
2008-11-09 18:54:17 +00:00
|
|
|
<script src="<?= url::file("lib/jquery.js") ?>" type="text/javascript"></script>
|
2008-11-15 06:23:09 +00:00
|
|
|
<script src="<?= url::file("lib/jquery.form.js") ?>" type="text/javascript"></script>
|
2008-11-22 21:46:34 +00:00
|
|
|
<?= $theme->head() ?>
|
2008-12-07 04:49:26 +00:00
|
|
|
<script src="<?= $theme->url("jquery/ui.core.js") ?>" type="text/javascript"></script>
|
|
|
|
|
<script src="<?= $theme->url("jquery/ui.tabs.min.js") ?>" type="text/javascript"></script>
|
|
|
|
|
<script src="<?= $theme->url("jquery/ui.draggable.min.js") ?>" type="text/javascript"></script>
|
|
|
|
|
<script src="<?= $theme->url("jquery/ui.resizable.min.js") ?>" type="text/javascript"></script>
|
|
|
|
|
<script src="<?= $theme->url("jquery/ui.dialog.min.js") ?>" type="text/javascript"></script>
|
|
|
|
|
<script src="<?= $theme->url("jquery/jquery.dimensions.min.js") ?>" type="text/javascript"></script>
|
|
|
|
|
<script src="<?= $theme->url("js/ui.init.js") ?>" type="text/javascript"></script>
|
2008-11-03 05:53:20 +00:00
|
|
|
</head>
|
|
|
|
|
|
2008-11-07 05:03:00 +00:00
|
|
|
<body>
|
2008-11-26 21:50:45 +00:00
|
|
|
<?= $theme->page_top() ?>
|
|
|
|
|
<div id="doc4" class="yui-t5 gView">
|
2008-11-09 23:03:50 +00:00
|
|
|
<div id="hd">
|
|
|
|
|
<div id="gHeader">
|
|
|
|
|
<?= $theme->display("header.html") ?>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2008-11-03 05:53:20 +00:00
|
|
|
<div id="bd">
|
2008-11-04 05:22:06 +00:00
|
|
|
<div id="yui-main">
|
2008-11-09 23:03:50 +00:00
|
|
|
<div class="yui-b">
|
|
|
|
|
<div id="gContent" class="yui-g">
|
|
|
|
|
<?= $content ?>
|
|
|
|
|
</div>
|
2008-11-04 05:22:06 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2008-11-09 23:03:50 +00:00
|
|
|
<div id="gSidebar" class="yui-b">
|
|
|
|
|
<?= $theme->display("sidebar.html") ?>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="ft">
|
|
|
|
|
<div id="gFooter">
|
|
|
|
|
<?= $theme->display("footer.html") ?>
|
|
|
|
|
</div>
|
2008-11-03 05:53:20 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2008-11-22 21:46:34 +00:00
|
|
|
<?= $theme->page_bottom() ?>
|
2008-11-03 05:53:20 +00:00
|
|
|
</body>
|
|
|
|
|
</html>
|