diff options
| author | Chad Kieffer <ckieffer@gmail.com> | 2009-07-26 16:02:53 -0600 | 
|---|---|---|
| committer | Chad Kieffer <ckieffer@gmail.com> | 2009-07-26 16:02:53 -0600 | 
| commit | a7af9bb456fa840d0be2f83145a642e202be3325 (patch) | |
| tree | 7230cf125cee2569d066b01a3f8cb17dc159a2d5 /themes | |
| parent | 04ed02fedd264bb3fb4f638176aae7595a8da7ca (diff) | |
Missed committing the gBanner addition to the view template.
Diffstat (limited to 'themes')
| -rw-r--r-- | themes/default/views/header.html.php | 26 | 
1 files changed, 13 insertions, 13 deletions
| diff --git a/themes/default/views/header.html.php b/themes/default/views/header.html.php index c903edf5..2ba1e923 100644 --- a/themes/default/views/header.html.php +++ b/themes/default/views/header.html.php @@ -1,19 +1,19 @@  <?php defined("SYSPATH") or die("No direct script access.") ?> -<?= $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" style="display: none"> -<?= $theme->site_menu() ?> +<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> -<?= $theme->header_bottom() ?> -  <? if (!empty($parents)): ?>  <ul class="gBreadcrumbs">    <? foreach ($parents as $parent): ?> | 
