mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-11 17:40:57 -04:00
all (except in some very minor ways). It's unclear if this is the best final structure. Right now the album controller knows a considerable amount about the layout of the page, which may not be the best way to do things.
31 lines
1002 B
PHP
31 lines
1002 B
PHP
<? defined("SYSPATH") or die("No direct script access."); ?>
|
|
<div id="gHeader">
|
|
<img id="gLogo" alt="<?= _("Logo") ?>" src="<?= theme::url("images/logo.png") ?>" />
|
|
|
|
<h1><?= $item->title ?></h1>
|
|
|
|
<div id="gLoginMenu">
|
|
<a href="#"><?= _("Register") ?></a> |
|
|
<a href="#"><?= _("Login") ?>
|
|
</div>
|
|
|
|
<ul id="gSiteMenu">
|
|
<li><a href="index.html"><?= _("HOME") ?></a></li>
|
|
<li><a class="active" href="browse.html"><?= _("BROWSE") ?></a></li>
|
|
<li><a href="upload.html"><?= _("UPLOAD") ?></a></li>
|
|
<li><a href="upload.html"><?= _("MY GALLERY") ?></a></li>
|
|
<li><a href="#"><?= _("ADMIN") ?></a></li>
|
|
</ul>
|
|
|
|
<ul id="gBreadcrumbs">
|
|
<li class="root"><a href="#">Home</a></li>
|
|
<li><a href="#">Friends & Family</a></li>
|
|
<li class="active"><span>Christmas 2007</span></li>
|
|
</ul>
|
|
|
|
<form id="gSearchForm">
|
|
<input type="text" class="text" value="<?= _("Search Gallery ...") ?>"/>
|
|
<input type="submit" class="submit" value="search" />
|
|
</form>
|
|
</div>
|