aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/article.html
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/templates/article.html
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/templates/article.html')
-rw-r--r--src/web/templates/article.html10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/web/templates/article.html b/src/web/templates/article.html
index 6ab9d0bb..a95d86d9 100644
--- a/src/web/templates/article.html
+++ b/src/web/templates/article.html
@@ -21,16 +21,6 @@
{{ article.content | safe }}
</div>
<div class="well">
- <div class="row">
- <div class="col-md-6">
- {{ _('Next post:') }} <a href="/article/{{ next_article.id }}">{{ next_article.title }}</a>
- </div>
- <div class="col-md-6 text-right">
- {{ _('Previous post:') }} <a href="/article/{{ previous_article.id }}">{{ previous_article.title }}</a>
- </div>
- </div>
- </div>
- <div class="well">
<a href="https://api.pinboard.in/v1/posts/add?url={{ article.link }}&description={{ article.title }}" rel="noreferrer" target="_blank">
<img src="{{ url_for('static', filename='img/pinboard.png') }}" title="{{ _('Share on') }} Pinboard" />
</a>
bgstack15