diff options
author | Simon <simon@kisikew.org> | 2012-03-25 19:46:59 -0700 |
---|---|---|
committer | Simon <simon@kisikew.org> | 2012-03-25 19:46:59 -0700 |
commit | 8ac59d81f37761d631b78a7bfedf914141b710ee (patch) | |
tree | 261dc6c4c0c40960a4ff6ae720b208e853fce40e /view/theme/dispy/nav.tpl | |
parent | 7ab117fd31c31cba4880cfcc63fc940531850455 (diff) | |
parent | 3d11c22b01e1581b4606312dcc38dfd7b7906502 (diff) | |
download | volse-hubzilla-8ac59d81f37761d631b78a7bfedf914141b710ee.tar.gz volse-hubzilla-8ac59d81f37761d631b78a7bfedf914141b710ee.tar.bz2 volse-hubzilla-8ac59d81f37761d631b78a7bfedf914141b710ee.zip |
Merge pull request #169 from simonlnu/master
search box
Diffstat (limited to 'view/theme/dispy/nav.tpl')
-rw-r--r-- | view/theme/dispy/nav.tpl | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/view/theme/dispy/nav.tpl b/view/theme/dispy/nav.tpl index 11469dc66..589d68352 100644 --- a/view/theme/dispy/nav.tpl +++ b/view/theme/dispy/nav.tpl @@ -5,7 +5,7 @@ <!-- yes, they're going the other way. seems that's how the template renderer works --> - <div id="nav-floater"> +<div id="nav-floater"> <div id="nav-buttons"> {{ if $nav.help }} <a id="nav-help-link" class="nav-link $nav.help.2" href="$nav.help.0" title="$nav.help.1">$nav.help.1</a> @@ -33,17 +33,23 @@ works --> {{ endif }} {{ if $nav.network }} <a id="nav-network-link" class="nav-link $nav.network.2" - href="$nav.network.0" title="$nav.network.1">$nav.network.1</a> + href="$nav.network.0" title="$nav.network.1">$nav.network.1</a> {{ endif }} {{ if $nav.home }} <a id="nav-home-link" class="nav-link $nav.home.2" - href="$nav.home.0" title="$nav.home.1">$nav.home.1</a> + href="$nav.home.0" title="$nav.home.1">$nav.home.1</a> {{ endif }} {{ if $nav.login }} <a id="nav-login-link" class="nav-login-link $nav.login.2" - href="$nav.login.0" title="$nav.login.3" >$nav.login.1</a> + href="$nav.login.0" title="$nav.login.3" >$nav.login.1</a> {{ endif }} - </div> + </div> + + <div class="search-box"> + <form method="get" action="$nav.search.0"> + <input id="search-text" class="nav-menu-search" type="search" placeholder="Search" value="" id="search" name="search" /> + </form> + </div> <div id="user-menu"> <a id="user-menu-label" onclick="openClose('user-menu-popup'); return false" href="$nav.home.0">$sitelocation</a> |