aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/article.html
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-11-01 17:36:39 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-11-01 17:36:39 +0100
commit3ca4561d36673f5a2360ab9174b3f4d5a9a32ead (patch)
treeddc3800c1c1b8132d32d586d01f8ad0b34c7d396 /pyaggr3g470r/templates/article.html
parentIt is now possible to delete an article or an entire feed. (diff)
downloadnewspipe-3ca4561d36673f5a2360ab9174b3f4d5a9a32ead.tar.gz
newspipe-3ca4561d36673f5a2360ab9174b3f4d5a9a32ead.tar.bz2
newspipe-3ca4561d36673f5a2360ab9174b3f4d5a9a32ead.zip
Updated templates.
Diffstat (limited to 'pyaggr3g470r/templates/article.html')
-rw-r--r--pyaggr3g470r/templates/article.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyaggr3g470r/templates/article.html b/pyaggr3g470r/templates/article.html
index 98a170e0..05738a5f 100644
--- a/pyaggr3g470r/templates/article.html
+++ b/pyaggr3g470r/templates/article.html
@@ -2,9 +2,9 @@
{% block content %}
<div class="container">
<div class="jumbotron">
- <h2><a href="{{ article.link }}">{{ article.title }}</a></h2>
- <h6>{{ article.date }}</h6>
- <a href="/delete/{{ article.id }}"><i class="glyphicon glyphicon-remove"></i></a>
+ <a href="/delete/{{ article.id }}"><i class="glyphicon glyphicon-remove"></i></a>
+ <h2><a href="{{ article.link }}">{{ article.title }}</a></h2>
+ <h6>{{ article.date }}</h6>
</div>
<div class="jumbotron">
{{ article.content|safe }}
bgstack15