diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-05-23 23:48:06 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-05-23 23:48:06 +0200 |
commit | e1f20da37f05548150c4b58a56ee285a3aa19185 (patch) | |
tree | 81be3d537fbc711273d49592875b7853aec192fd /src/web/templates | |
parent | fixed migration script (diff) | |
download | newspipe-e1f20da37f05548150c4b58a56ee285a3aa19185.tar.gz newspipe-e1f20da37f05548150c4b58a56ee285a3aa19185.tar.bz2 newspipe-e1f20da37f05548150c4b58a56ee285a3aa19185.zip |
Added a link in the main menu to the list of bookmarks.
Diffstat (limited to 'src/web/templates')
-rw-r--r-- | src/web/templates/layout.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html index 202f6854..26cd91b7 100644 --- a/src/web/templates/layout.html +++ b/src/web/templates/layout.html @@ -47,6 +47,15 @@ {% endif %} <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> + <div><span class="glyphicon glyphicon-bookmark"></span></div> + </a> + <ul class="dropdown-menu"> + <li><a href="{{ url_for('bookmarks.list') }}">{{ _('Your bookmarks') }}</a></li> + <li><a href="{{ url_for('bookmark.form') }}">{{ _('Add a new bookmark') }}</a></li> + </ul> + </li> + <li class="dropdown"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <div><span class="glyphicon glyphicon-plus-sign"></span> {{ _('Add a new feed') }}</div> </a> <ul class="dropdown-menu"> |