2009-01-01 00:23:29 +00:00
<? php defined ( "SYSPATH" ) or die ( "No direct script access." ) ?>
2008-12-14 07:59:24 +00:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Tranisitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<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" />
2009-06-05 19:47:11 -07:00
<title><?= t("Admin Dashboard") ?></title>
2009-01-02 22:06:12 +00:00
<link rel="shortcut icon" href="<?= url::file("themes/default/images/favicon.ico") ?>" type="image/x-icon" />
2009-06-29 06:44:05 -07:00
<?= $theme->css("lib/yui/reset-fonts-grids.css") ?>
<?= $theme->css("lib/themeroller/ui.base.css") ?>
<?= $theme->css("lib/superfish/css/superfish.css") ?>
<?= $theme->css("themes/default/css/screen.css") ?>
<?= $theme->theme_css("css/screen.css") ?>
2009-06-29 20:12:27 -07:00
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" href="<?= $theme->theme_url("css/fix-ie.css") ?>"
media="screen,print,projection" />
<![endif]-->
2009-06-28 19:45:11 -07:00
<?= $theme->script("lib/jquery.js") ?>
<?= $theme->script("lib/jquery.form.js") ?>
<?= $theme->script("lib/jquery-ui.js") ?>
<?= $theme->script("lib/gallery.common.js") ?>
2009-06-29 21:03:40 -07:00
<? /* MSG_CANCEL is required by gallery.dialog.js */ ?>
<script type="text/javascript">
var MSG_CANCEL = "<?= t('Cancel') ?>";
</script>
2009-06-28 19:45:11 -07:00
<?= $theme->script("lib/gallery.dialog.js") ?>
<?= $theme->script("lib/superfish/js/superfish.js") ?>
<?= $theme->theme_script("js/jquery.dropshadow.js") ?>
<?= $theme->theme_script("js/ui.init.js") ?>
2009-06-26 07:51:29 -07:00
<?= $theme->admin_head() ?>
2008-12-14 07:59:24 +00:00
</head>
2009-06-08 23:17:28 -07:00
<body <?= $theme->body_attributes() ?>>
2008-12-22 03:53:36 +00:00
<?= $theme->admin_page_top() ?>
2009-01-12 04:24:53 +00:00
<? if ($sidebar): ?>
2009-01-02 20:09:28 +00:00
<div id="doc3" class="yui-t5 gView">
2009-01-12 04:24:53 +00:00
<? else: ?>
<div id="doc3" class="yui-t7 gView">
<? endif; ?>
2009-03-19 16:01:41 +00:00
<?= $theme->site_status() ?>
<div id="gHeader">
<?= $theme->admin_header_top() ?>
<ul id="gLoginMenu">
2009-06-30 22:22:29 -04:00
<li class="first"><?= html::anchor("albums/1", "← ".t("Back to the Gallery")) ?></li>
2009-06-07 01:49:55 +08:00
<li id="gLogoutLink"><a href="<?= url::site("logout?continue=albums/1&csrf=$csrf") ?>"><?= t("Logout") ?></a></li>
2009-03-19 16:01:41 +00:00
</ul>
2009-07-01 02:17:38 -04:00
<a id="gLogo" href="<?= url::site("albums/1") ?>" title="<?= t("go back to the Gallery") ?>"><!--<img src="<?= url::file("themes/default/images/logo.png") ?>" alt="<?= t("Gallery logo: Your Photos on Your Web Site") ?>" />-->← <?= t("back to the ...") ?></a>
<div id="gSiteAdminMenu" style="display: none;">
2009-03-19 16:01:41 +00:00
<?= $theme->admin_menu() ?>
2008-12-14 07:59:24 +00:00
</div>
2009-03-19 16:01:41 +00:00
<?= $theme->admin_header_bottom() ?>
2008-12-14 07:59:24 +00:00
</div>
<div id="bd">
<div id="yui-main">
<div class="yui-b">
<div id="gContent" class="yui-g">
2009-01-02 07:09:25 +00:00
<?= $theme->messages() ?>
2008-12-15 01:48:34 +00:00
<?= $content ?>
2008-12-14 07:59:24 +00:00
</div>
</div>
</div>
2009-01-12 04:04:55 +00:00
<? if ($sidebar): ?>
2008-12-14 07:59:24 +00:00
<div id="gSidebar" class="yui-b">
2009-01-12 04:04:55 +00:00
<?= $sidebar ?>
2008-12-14 07:59:24 +00:00
</div>
2009-01-12 04:04:55 +00:00
<? endif ?>
2008-12-14 07:59:24 +00:00
</div>
2009-03-19 16:01:41 +00:00
<div id="gFooter">
<?= $theme->admin_footer() ?>
<div>
2009-03-25 01:34:04 +00:00
<?= $theme->admin_credits() ?>
</div>
2008-12-14 07:59:24 +00:00
</div>
</div>
2008-12-22 03:53:36 +00:00
<?= $theme->admin_page_bottom() ?>
2008-12-14 07:59:24 +00:00
</body>
2008-12-15 01:48:34 +00:00
</html>