diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-03-04 17:14:03 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-03-04 17:14:03 +0100 |
commit | 3096091f1130f36df61d0845f4e026cd970ce66c (patch) | |
tree | 17edbf988fe5a311757fbd0ffe515ac8fb578f2a | |
parent | 40fe8db0c4dd2eb1208cdc6bdfb2868c84def489 (diff) |
do not show username in navbar (won't fit on small screens otherwise)
-rw-r--r-- | templates/layouts/default.html.ep | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep index 264928a..cbe06e3 100644 --- a/templates/layouts/default.html.ep +++ b/templates/layouts/default.html.ep @@ -22,7 +22,7 @@ <a href="/" class="brand-logo left">travelynx</a> <ul id="nav-mobile" class="right"> <li class="<%= navbar_class('/a/history') %>"><a href='/a/history' title="History"><i class="material-icons">history</i></a></li> - <li class="<%= navbar_class('/a/account') %>"><a href="/a/account" title="Account"><i class="material-icons left">account_circle</i><%= get_user_name() %></a></li> + <li class="<%= navbar_class('/a/account') %>"><a href="/a/account" title="Account"><i class="material-icons">account_circle</i></a></li> <li class="<%= navbar_class('/x/about') %>"><a href='/x/about' title="About"><i class="material-icons">info_outline</i></a></li> </ul> </div> |