Files
gallery3/themes/default/views/header.html.php

19 lines
571 B
PHP
Raw Normal View History

<? defined("SYSPATH") or die("No direct script access."); ?>
<?= $theme->header_top() ?>
2008-11-10 07:57:43 +00:00
<img id="gLogo" alt="<?= _("Logo") ?>" src="<?= $theme->url("images/logo.png") ?>" />
<div id="gSiteMenu" class="gClearFix">
<?= $theme->site_navigation() ?>
</div>
<?= $theme->header_bottom() ?>
<? if ($page_type != "tag"): ?>
<ul id="gBreadcrumbs" class="gClearFix">
2008-11-10 07:57:43 +00:00
<? foreach ($parents as $parent): ?>
<li><a href="<?= url::site("albums/{$parent->id}") ?>"><?= $parent->title ?></a></li>
2008-11-10 07:57:43 +00:00
<? endforeach ?>
<li class="active"><?= $item->title ?></li>
2008-11-10 07:57:43 +00:00
</ul>
<? endif ?>