aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/article_pub.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-11-13 17:29:47 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-11-13 17:29:47 +0100
commit0408a624a671f06a6ba0122e78b41f48ac2900c6 (patch)
tree73cf32e4aaeba0725d80f84643dec8cf69592ee3 /src/web/templates/article_pub.html
parentUpdated CHANGELOG. (diff)
downloadnewspipe-0408a624a671f06a6ba0122e78b41f48ac2900c6.tar.gz
newspipe-0408a624a671f06a6ba0122e78b41f48ac2900c6.tar.bz2
newspipe-0408a624a671f06a6ba0122e78b41f48ac2900c6.zip
Added page for public feeds.
Diffstat (limited to 'src/web/templates/article_pub.html')
-rw-r--r--src/web/templates/article_pub.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/article_pub.html b/src/web/templates/article_pub.html
index f9275217..e810d18f 100644
--- a/src/web/templates/article_pub.html
+++ b/src/web/templates/article_pub.html
@@ -3,7 +3,7 @@
<div class="container" data-article="{{ article.id }}">
<div class="well">
<h2><a href="{{ article.link }}" target="_blank">{{ article.title|safe }}</a></h2>
- <h3>{{ _('from') }} <a href="/feed/{{ article.source.id }}">{{ article.source.title }}</a></h3>
+ <h3>{{ _('from') }} <a href="{{ url_for('feed.feed_pub', feed_id=article.source.id) }}">{{ article.source.title }}</a></h3>
<h6>{{ article.date | datetime }}</h6>
</div>
<div class="well">
bgstack15