summaryrefslogtreecommitdiff
path: root/themes/default/views/header.html.php
blob: e5a7fa80ee3f7cf4eb5bf4c19a82c9431a09d932 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php defined("SYSPATH") or die("No direct script access.") ?>
<?= $theme->header_top() ?>
<a href="<?= url::site("albums/1") ?>">
  <img id="gLogo" alt="<?= t("Logo") ?>" src="<?= $theme->url("images/logo.png") ?>" />
</a>

<div id="gSiteMenu">
<?= $theme->site_menu() ?>
</div>

<?= $theme->header_bottom() ?>

<? if ($page_type != "tag"): ?>
<ul id="gBreadcrumbs">
  <? foreach ($parents as $parent): ?>
  <li><a href="<?= url::site("albums/{$parent->id}?show=$item->id") ?>"><?= $parent->title ?></a></li>
  <? endforeach ?>
  <li class="active"><?= $item->title ?></li>
</ul>
<? endif ?>