aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-06-06 13:57:35 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-06-06 13:57:35 +0200
commit82ee63445ad7030da859817f48436e758500a5f9 (patch)
tree5f062e13c5f74436ac58294f688dc16e6d9ff3d2
parentchg: [views] removed delete article button from the home page. (diff)
downloadnewspipe-82ee63445ad7030da859817f48436e758500a5f9.tar.gz
newspipe-82ee63445ad7030da859817f48436e758500a5f9.tar.bz2
newspipe-82ee63445ad7030da859817f48436e758500a5f9.zip
chg: [views] improved article view
-rw-r--r--newspipe/templates/article.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/newspipe/templates/article.html b/newspipe/templates/article.html
index c6ebb87a..81705da1 100644
--- a/newspipe/templates/article.html
+++ b/newspipe/templates/article.html
@@ -17,9 +17,11 @@
{% endif %}
<h6>{{ article.date | datetime }}</h6>
</div>
+ <br />
<div class="well">
{{ article.content | safe }}
</div>
+ <br />
<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" />
bgstack15