diff options
-rw-r--r-- | newspipe/templates/bookmarks.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/templates/bookmarks.html b/newspipe/templates/bookmarks.html index 0f6e02c4..bdf9168c 100644 --- a/newspipe/templates/bookmarks.html +++ b/newspipe/templates/bookmarks.html @@ -58,7 +58,7 @@ </h4> <p class="list-group-item-text"> <div class="text-muted">{{ bookmark.description }}</div> - <div>{% for tag in bookmark.tags %}<a href="{{ url_for('bookmarks.list_', tag=tag.text) }}">{{ tag.text }} </a>{% endfor %}</div> + <div>{% for tag in bookmark.tags %}<a href="{{ url_for('bookmarks.list_', tag=tag.text) }}">{{ tag.text }}</a> {% endfor %}</div> {{ bookmark.time | datetime }} {% if current_user.is_authenticated %} <a class="text-muted" href="{{ url_for('bookmark.form', bookmark_id=bookmark.id) }}">edit</a> |