mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
19 lines
571 B
PHP
19 lines
571 B
PHP
<? defined("SYSPATH") or die("No direct script access."); ?>
|
|
<?= $theme->header_top() ?>
|
|
<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">
|
|
<? foreach ($parents as $parent): ?>
|
|
<li><a href="<?= url::site("albums/{$parent->id}") ?>"><?= $parent->title ?></a></li>
|
|
<? endforeach ?>
|
|
<li class="active"><?= $item->title ?></li>
|
|
</ul>
|
|
<? endif ?>
|