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-02-26 02:47:38 +00:00
|
|
|
<? if ($header_text = module::get_var("core", "header_text")): ?>
|
|
|
|
|
<?= $header_text ?>
|
|
|
|
|
<? else: ?>
|
2009-01-12 00:42:14 +00:00
|
|
|
<a href="<?= url::site("albums/1") ?>">
|
2009-03-12 04:23:53 +00:00
|
|
|
<img 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-01-03 20:14:06 +00:00
|
|
|
<li><a href="<?= url::site("albums/{$parent->id}?show=$item->id") ?>"><?= $parent->title ?></a></li>
|
2008-11-10 07:57:43 +00:00
|
|
|
<? endforeach ?>
|
2008-12-01 06:57:37 +00:00
|
|
|
<li class="active"><?= $item->title ?></li>
|
2008-11-10 07:57:43 +00:00
|
|
|
</ul>
|
2008-11-26 21:50:45 +00:00
|
|
|
<? endif ?>
|