diff --git a/digimarks.py b/digimarks.py index a4cc59d..82d5ad1 100644 --- a/digimarks.py +++ b/digimarks.py @@ -399,7 +399,7 @@ def publictag(tagkey): try: this_tag = PublicTag.get(PublicTag.tagkey == tagkey) bookmarks = Bookmark.select().where(Bookmark.userkey == this_tag.userkey, Bookmark.tags.contains(this_tag.tag), Bookmark.status == Bookmark.VISIBLE) - return render_template('publicbookmarks.html', bookmarks=bookmarks, tag=tag, action=this_tag.tag) + return render_template('publicbookmarks.html', bookmarks=bookmarks, tag=tag, action=this_tag.tag, tagkey=tagkey) except PublicTag.DoesNotExist: abort(404) diff --git a/templates/publicbookmarks.html b/templates/publicbookmarks.html index 9eacf1e..3b32513 100644 --- a/templates/publicbookmarks.html +++ b/templates/publicbookmarks.html @@ -18,6 +18,12 @@ {% endif %} +
+
+ rss_feed feed +
+
+
{% for bookmark in bookmarks %}