2009-01-01 00:23:29 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2008-11-22 21:46:34 +00:00
|
|
|
<?= $theme->header_top() ?>
|
2009-05-27 16:15:00 -07:00
|
|
|
<? if ($header_text = module::get_var("gallery", "header_text")): ?>
|
2009-02-26 02:47:38 +00:00
|
|
|
<?= $header_text ?>
|
|
|
|
|
<? else: ?>
|
2009-01-12 00:42:14 +00:00
|
|
|
<a href="<?= url::site("albums/1") ?>">
|
2009-06-21 15:15:07 -07:00
|
|
|
<img width="107" height="48" id="gLogo" alt="<?= t("Gallery: Your photos on your web site") ?>" src="<?= $theme->url("images/logo.png") ?>" />
|
2009-01-12 00:42:14 +00:00
|
|
|
</a>
|
2009-02-26 02:47:38 +00:00
|
|
|
<? endif ?>
|
2008-11-10 16:36:56 +00:00
|
|
|
|
2009-02-15 22:52:01 +00:00
|
|
|
<div id="gSiteMenu" style="display: none">
|
2008-12-18 07:32:34 +00:00
|
|
|
<?= $theme->site_menu() ?>
|
2008-11-21 08:35:53 +00:00
|
|
|
</div>
|
2008-11-09 23:03:50 +00:00
|
|
|
|
2008-11-23 08:08:12 +00:00
|
|
|
<?= $theme->header_bottom() ?>
|
2008-11-10 02:16:09 +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") ?>">
|
|
|
|
|
<?= p::clean($parent->title) ?>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
2008-11-10 07:57:43 +00:00
|
|
|
<? endforeach ?>
|
2009-05-31 01:06:51 -07:00
|
|
|
<li class="active"><?= p::clean($item->title) ?></li>
|
2008-11-10 07:57:43 +00:00
|
|
|
</ul>
|
2008-11-26 21:50:45 +00:00
|
|
|
<? endif ?>
|