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>
|
2008-11-06 07:24:58 +00:00
|
|
|
<title><?= _("Browse Photos") ?> :: <?= $item->title ?></title>
|
2008-11-03 05:53:20 +00:00
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
2008-11-07 06:44:36 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="<?= url::base() .
|
|
|
|
|
"lib/yui/reset-fonts-grids.css" ?>" media="screen,print,projection" />
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="<?= url::base() .
|
|
|
|
|
"lib/yui/base-min.css" ?>" media="screen,print,projection" />
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="<?=
|
2008-11-07 05:03:00 +00:00
|
|
|
$theme->url("css/screen.css") ?>" media="screen,print,projection" />
|
2008-11-03 05:53:20 +00:00
|
|
|
</head>
|
|
|
|
|
|
2008-11-07 05:03:00 +00:00
|
|
|
<body>
|
2008-11-06 07:20:06 +00:00
|
|
|
<div id="doc2" class="yui-t5 gView">
|
2008-11-06 07:24:58 +00:00
|
|
|
<?= $theme->display("header.html") ?>
|
2008-11-03 05:53:20 +00:00
|
|
|
<div id="bd">
|
2008-11-04 05:22:06 +00:00
|
|
|
<div id="yui-main">
|
|
|
|
|
<div id="gContent" class="yui-b">
|
|
|
|
|
<?= $content ?>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2008-11-06 07:24:58 +00:00
|
|
|
<?= $theme->display("sidebar.html") ?>
|
2008-11-03 05:53:20 +00:00
|
|
|
</div>
|
2008-11-06 07:24:58 +00:00
|
|
|
<?= $theme->display("footer.html") ?>
|
2008-11-03 05:53:20 +00:00
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|