summaryrefslogtreecommitdiff
path: root/themes/default/views/header.html.php
blob: 264c8fa476e263d004e2f7c0b93c9666198cc0d8 (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
25
<? defined("SYSPATH") or die("No direct script access."); ?>
  <img id="gLogo" alt="<?= _("Logo") ?>" src="<?= $theme->url("images/logo.png") ?>" />
  <h1><?= $item->title_edit ?></h1>
  <?= $login ?>

  <ul id="gSiteMenu">
  <li><a href="index.php"><?= _("HOME") ?></a></li>
  <li><a class="active" href="index.php/album/1"><?= _("BROWSE") ?></a></li>
  <li><a href="#"><?= _("UPLOAD") ?></a></li>
  <li><a href="#"><?= _("MY GALLERY") ?></a></li>
    <li><a href="#"><?= _("ADMIN") ?></a></li>
  </ul>

<form id="gSearchForm">
  <input type="text" class="text" value="<?= _("Search Gallery ...") ?>"/>
  <input type="submit" class="submit" value="search" />
</form>

  <ul id="gBreadcrumbs">
    <? foreach ($parents as $parent): ?>
    <li><a href="<?= url::site("album/{$parent->id}") ?>"><?= $parent->title_edit ?></a></li>
    <? endforeach ?>
    <li class="active"><?= $item->title_edit ?></li>
  </ul>