summaryrefslogtreecommitdiff
path: root/themes/default/views/header.html.php
diff options
context:
space:
mode:
authorAndy Staudacher <andy.st@gmail.com>2009-08-31 00:32:41 -0700
committerAndy Staudacher <andy.st@gmail.com>2009-08-31 00:32:41 -0700
commit6d26b0dd6e900250072ca723c388cf3c5d987aeb (patch)
tree392f46f356e44c4900954e346c3b56a18be95dc6 /themes/default/views/header.html.php
parent2bf9b8ee550a805605f862c392839e49ae42f89d (diff)
parent12e00309cedb3ed4349ab70a38d64e2b439c5f20 (diff)
Merge commit 'upstream/master'
Diffstat (limited to 'themes/default/views/header.html.php')
-rw-r--r--themes/default/views/header.html.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/themes/default/views/header.html.php b/themes/default/views/header.html.php
deleted file mode 100644
index dcfa6fd8..00000000
--- a/themes/default/views/header.html.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php defined("SYSPATH") or die("No direct script access.") ?>
-<div id="gBanner">
- <?= $theme->header_top() ?>
- <? if ($header_text = module::get_var("gallery", "header_text")): ?>
- <?= $header_text ?>
- <? else: ?>
- <a id="gLogo" href="<?= url::site("albums/1") ?>" title="<?= t("go back to the Gallery home") ?>">
- <img width="107" height="48" alt="<?= t("Gallery logo: Your photos on your web site") ?>" src="<?= $theme->url("images/logo.png") ?>" />
- </a>
- <? endif ?>
- <div id="gSiteMenu">
- <?= $theme->site_menu() ?>
- </div>
- <?= $theme->header_bottom() ?>
-</div>
-
-<? if (!empty($parents)): ?>
-<ul class="gBreadcrumbs">
- <? foreach ($parents as $parent): ?>
- <li>
- <a href="<?= url::site("albums/{$parent->id}?show=$item->id") ?>">
- <?= html::purify($parent->title) ?>
- </a>
- </li>
- <? endforeach ?>
- <li class="active"><?= html::purify($item->title) ?></li>
-</ul>
-<? endif ?>