diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2008-12-15 01:52:04 +0000 | 
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2008-12-15 01:52:04 +0000 | 
| commit | 2842a1a8be748f6ec1024ea3a8ecc97471f70a3f (patch) | |
| tree | 6ce04d0118907f4299d2d39e23aaf305b2d7f80f /themes/default/views/header.html.php | |
| parent | 1127257f638ce641f23751928c449c3121622a8d (diff) | |
Argh, fix a bad rename.
Diffstat (limited to 'themes/default/views/header.html.php')
| -rw-r--r-- | themes/default/views/header.html.php | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/themes/default/views/header.html.php b/themes/default/views/header.html.php new file mode 100644 index 00000000..89d105fb --- /dev/null +++ b/themes/default/views/header.html.php @@ -0,0 +1,18 @@ +<? 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"> +<?= $theme->site_navigation() ?> +</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 ?></a></li> +  <? endforeach ?> +  <li class="active"><?= $item->title ?></li> +</ul> +<? endif ?> | 
