diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-03 20:58:42 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-03 20:58:42 +0100 |
commit | b50230f61a099249134fea87ad8ba2262cc31ffe (patch) | |
tree | aa7df044eca82dcd88e4e1ed06f27380ad19536a | |
parent | improbements of the home page. (diff) | |
download | newspipe-b50230f61a099249134fea87ad8ba2262cc31ffe.tar.gz newspipe-b50230f61a099249134fea87ad8ba2262cc31ffe.tar.bz2 newspipe-b50230f61a099249134fea87ad8ba2262cc31ffe.zip |
Removed icons in menus.
-rw-r--r-- | newspipe/web/templates/layout.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/newspipe/web/templates/layout.html b/newspipe/web/templates/layout.html index 1453c3fd..38ec49ef 100644 --- a/newspipe/web/templates/layout.html +++ b/newspipe/web/templates/layout.html @@ -91,15 +91,15 @@ <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" id="navbarDropdownUser" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="fa fa-user" aria-hidden="true"></i></a> <div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownUser"> - <a class="dropdown-item" href="{{ url_for('user.profile') }}"><i class="fa fa-user" aria-hidden="true"></i> {{ _('Profile') }}</a> - <a class="dropdown-item" href="{{ url_for('user.management') }}"><i class="fa fa-hdd-o" aria-hidden="true"></i> {{ _('Your data') }}</a> - <a class="dropdown-item" href="{{ url_for('about') }}">{{ _('About') }}</a> + <a class="dropdown-item" href="{{ url_for('user.profile') }}">{{ _('Profile') }}</a> + <a class="dropdown-item" href="{{ url_for('user.management') }}">{{ _('Your data') }}</a> {% if current_user.is_admin %} <div class="dropdown-divider"></div> <a class="dropdown-item" href="{{ url_for('admin.dashboard') }}">{{ _('Dashboard') }}</a> <div class="dropdown-divider"></div> {% endif %} - <a class="dropdown-item" href="{{ url_for('logout') }}" title="{{ _('Logout') }}"><i class="fa fa-sign-out" aria-hidden="true"></i> Logout</a> + <a class="dropdown-item" href="{{ url_for('about') }}">{{ _('About') }}</a> + <a class="dropdown-item" href="{{ url_for('logout') }}" title="{{ _('Logout') }}">Logout</a> </div> </li> {% else %} |