aboutsummaryrefslogtreecommitdiff
path: root/src/web/views
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-12 12:49:21 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-12 12:49:21 +0200
commitd32edc3232580dbf8e602be36d5ef75a7092f67a (patch)
treec6de8849e8b0be4a6a641b5fda2e0e66f3a66066 /src/web/views
parentFixed 'license should be a valid SPDX license expression' problem. (diff)
downloadnewspipe-d32edc3232580dbf8e602be36d5ef75a7092f67a.tar.gz
newspipe-d32edc3232580dbf8e602be36d5ef75a7092f67a.tar.bz2
newspipe-d32edc3232580dbf8e602be36d5ef75a7092f67a.zip
Removed links between current article and the previous/next articles.
Diffstat (limited to 'src/web/views')
-rw-r--r--src/web/views/article.py11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/web/views/article.py b/src/web/views/article.py
index 407345c3..fea4aa06 100644
--- a/src/web/views/article.py
+++ b/src/web/views/article.py
@@ -35,18 +35,9 @@ def article(article_id=None):
Presents the content of an article.
"""
article = ArticleController(current_user.id).get(id=article_id)
- previous_article = article.previous_article()
- if previous_article is None:
- previous_article = article.source.articles[0]
- next_article = article.next_article()
- if next_article is None:
- next_article = article.source.articles[-1]
-
return render_template('article.html',
head_titles=[clear_string(article.title)],
- article=article,
- previous_article=previous_article,
- next_article=next_article)
+ article=article)
@article_bp.route('/like/<int:article_id>', methods=['GET'])
bgstack15