diff options
author | Miquel Lionel <lionelmiquel@sfr.fr> | 2021-01-25 17:31:15 +0100 |
---|---|---|
committer | Miquel Lionel <lionel@les-miquelots.net> | 2021-01-25 17:31:15 +0100 |
commit | 8daec640539cacff4ae1fa1e4b1eacde01b56abf (patch) | |
tree | e9d52bd667a08efbcad22f24176fab2e0f1d76a8 /views | |
parent | c7c15a4e8b7cb5b0cb23d51367fa9d8b795c4da1 (diff) | |
download | honk_custom-8daec640539cacff4ae1fa1e4b1eacde01b56abf.tar.gz honk_custom-8daec640539cacff4ae1fa1e4b1eacde01b56abf.zip |
less ambiguous navbar sections
- fanfare -> front
- my honks -> profile
- modified tabindex so a single tab will
focus on the search field.
Diffstat (limited to 'views')
-rw-r--r-- | views/header.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/views/header.html b/views/header.html index 9356c2c..b4675e3 100644 --- a/views/header.html +++ b/views/header.html @@ -61,15 +61,15 @@ <!-- CUSTOM HONK NAVIGATION BAR --> <div id="altnavbar"> - <a href="/newhonk">new honk</a> | - <a href="/front">fanfare</a> | + <a href="/newhonk" tabindex="2">new honk</a> | + <a href="/front">front</a> | <a href="/">home</a> | <a href="/xzone">fetch</a> | <a href="/atme">@me</a> | - <a href="/u/{{ .UserInfo.Username}}">my honks</a> | + <a href="/u/{{ .UserInfo.Username}}">profile</a> | <a href="/account">settings</a> | <form style="display:inline" action="/q" method="GET"> - <input type="text" name="q" autocomplete="off" size="10" placeholder="search"> + <input type="text" tabindex="1" name="q" autocomplete="off" size="10" placeholder="search"> </form> </div> <!-- END --> |