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

20 lines
584 B
PHP
Raw Normal View History

<?php defined("SYSPATH") or die("No direct script access.") ?>
<?= $theme->site_status() ?>
<?= $theme->header_top() ?>
2009-01-02 04:04:53 +00:00
<img id="gLogo" width="107" height="48" alt="<?= _("Logo") ?>" src="<?= $theme->url("images/logo.png") ?>" />
2008-12-30 00:52:03 +00:00
<div id="gSiteMenu">
<?= $theme->site_menu() ?>
</div>
<?= $theme->header_bottom() ?>
<? if ($page_type != "tag"): ?>
2008-12-30 00:52:03 +00:00
<ul id="gBreadcrumbs">
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 ?>