aboutsummaryrefslogtreecommitdiff
path: root/newspipe/templates/article.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-06-23 22:59:53 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-06-23 22:59:53 +0200
commit3ab30e029adedbd7e652552c6da1eafbeadb40cd (patch)
tree913961f581edcb29a86507d640b2b47800bee3bc /newspipe/templates/article.html
parentchg: [ui] improved forms in navbar. (diff)
downloadnewspipe-3ab30e029adedbd7e652552c6da1eafbeadb40cd.tar.gz
newspipe-3ab30e029adedbd7e652552c6da1eafbeadb40cd.tar.bz2
newspipe-3ab30e029adedbd7e652552c6da1eafbeadb40cd.zip
chg: [ui] improved article_pub template.
Diffstat (limited to 'newspipe/templates/article.html')
-rw-r--r--newspipe/templates/article.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/newspipe/templates/article.html b/newspipe/templates/article.html
index df9eba98..00ec3bde 100644
--- a/newspipe/templates/article.html
+++ b/newspipe/templates/article.html
@@ -28,9 +28,9 @@
<br />
<div class="row">
<div class="col">
- <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>
- <a href="https://reddit.com/submit?url={{ article.link }}&title={{ article.title }}" rel="noreferrer" target="_blank"><img src="{{ url_for('static', filename='img/reddit.png') }}" title="{{ _('Share on') }} reddit" /></a>
- <a href="https://twitter.com/intent/tweet?url={{ article.link }}&text={{ article.title }}" rel="noreferrer" target="_blank"><img src="{{ url_for('static', filename='img/twitter.png') }}" title="{{ _('Share on') }} twitter" ></a>
+ <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>
+ <a href="https://reddit.com/submit?url={{ article.link }}&title={{ article.title }}" rel="noreferrer" target="_blank"><img src="{{ url_for('static', filename='img/reddit.png') }}" title="{{ _('Share on') }} reddit" /></a>
+ <a href="https://twitter.com/intent/tweet?url={{ article.link }}&text={{ article.title }}" rel="noreferrer" target="_blank"><img src="{{ url_for('static', filename='img/twitter.png') }}" title="{{ _('Share on') }} twitter" ></a>
<div class="col">
</div>
</div><!-- /.container -->
bgstack15