2009-01-01 00:23:29 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2009-07-26 16:02:53 -06:00
|
|
|
<div id="gBanner">
|
|
|
|
|
<?= $theme->header_top() ?>
|
|
|
|
|
<? if ($header_text = module::get_var("gallery", "header_text")): ?>
|
|
|
|
|
<?= $header_text ?>
|
|
|
|
|
<? else: ?>
|
|
|
|
|
<a id="gLogo" href="<?= url::site("albums/1") ?>" title="<?= t("go back to the Gallery home") ?>">
|
|
|
|
|
<img width="107" height="48" alt="<?= t("Gallery logo: Your photos on your web site") ?>" src="<?= $theme->url("images/logo.png") ?>" />
|
|
|
|
|
</a>
|
|
|
|
|
<? endif ?>
|
|
|
|
|
<div id="gSiteMenu">
|
|
|
|
|
<?= $theme->site_menu() ?>
|
|
|
|
|
</div>
|
|
|
|
|
<?= $theme->header_bottom() ?>
|
2008-11-21 08:35:53 +00:00
|
|
|
</div>
|
2008-11-09 23:03:50 +00:00
|
|
|
|
2009-01-16 01:07:32 +00:00
|
|
|
<? if (!empty($parents)): ?>
|
2009-02-20 14:11:33 +00:00
|
|
|
<ul class="gBreadcrumbs">
|
2008-11-10 07:57:43 +00:00
|
|
|
<? foreach ($parents as $parent): ?>
|
2009-05-31 01:06:51 -07:00
|
|
|
<li>
|
|
|
|
|
<a href="<?= url::site("albums/{$parent->id}?show=$item->id") ?>">
|
2009-07-03 21:44:10 -07:00
|
|
|
<?= p::purify($parent->title) ?>
|
2009-05-31 01:06:51 -07:00
|
|
|
</a>
|
|
|
|
|
</li>
|
2008-11-10 07:57:43 +00:00
|
|
|
<? endforeach ?>
|
2009-07-03 21:44:10 -07:00
|
|
|
<li class="active"><?= p::purify($item->title) ?></li>
|
2008-11-10 07:57:43 +00:00
|
|
|
</ul>
|
2008-11-26 21:50:45 +00:00
|
|
|
<? endif ?>
|