summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2008-11-27 11:33:45 +0000
committerBharat Mediratta <bharat@menalto.com>2008-11-27 11:33:45 +0000
commit34a286ae90ec5b5bdb7702f6bdf560f5f92f4f38 (patch)
treec2e81aaa81b9eb0d112bae87109607888a592837 /themes
parent0b86568586b423de9689ba659782c3b67defe29a (diff)
Add navigation_top() and navigation_bottom() insertion points
Move "My Gallery" navigation tab into the user module and only show it if you're logged in
Diffstat (limited to 'themes')
-rw-r--r--themes/default/views/header.html.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/themes/default/views/header.html.php b/themes/default/views/header.html.php
index c34486be..29c7a8e0 100644
--- a/themes/default/views/header.html.php
+++ b/themes/default/views/header.html.php
@@ -4,10 +4,11 @@
<div id="gSiteMenu" class="gClearFix">
<ul class="ui-tabs-nav">
+ <?= $theme->navigation_top() ?>
<li><a href="<?= url::base() ?>"><?= _("HOME") ?></a></li>
<li><a class="active" href="<?= url::site("albums/1") ?>"><?= _("BROWSE") ?></a></li>
<li><a href="#"><?= _("UPLOAD") ?></a></li>
- <li><a href="#"><?= _("MY GALLERY") ?></a></li>
+ <?= $theme->navigation_bottom() ?>
<li><a href="#"><?= _("ADMIN") ?></a></li>
</ul>
</div>