summaryrefslogtreecommitdiff
path: root/themes/default/views/header.html.php
blob: 513147bc248b071fe5057519fb5746daa3277e5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<? 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">
  <ul class="ui-tabs-nav">
    <?= $theme->navigation_top() ?>
    <li><a href="<?= url::base() ?>"><?= _("HOME") ?></a></li>
    <li><a class="active" href="<?= url::site("albums/1") ?>"><?= _("BROWSE") ?></a></li>
    <li><a href="#"><?= _("UPLOAD") ?></a></li>
    <?= $theme->navigation_bottom() ?>
  </ul>
</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_edit ?></a></li>
  <? endforeach ?>
  <li class="active"><?= $item->title_edit ?></li>
</ul>
<? endif ?>