aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-10-28 07:58:09 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-10-28 07:58:09 +0100
commit2a2550cb449375b9138fb37214268ee6ab49423d (patch)
tree5e9d39c0981a992dbd26a9ff925be504adb02929 /pyaggr3g470r/templates
parentAdded link to the site of the feed. (diff)
downloadnewspipe-2a2550cb449375b9138fb37214268ee6ab49423d.tar.gz
newspipe-2a2550cb449375b9138fb37214268ee6ab49423d.tar.bz2
newspipe-2a2550cb449375b9138fb37214268ee6ab49423d.zip
Link to the original article.
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r--pyaggr3g470r/templates/article.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/pyaggr3g470r/templates/article.html b/pyaggr3g470r/templates/article.html
index d695a423..98a170e0 100644
--- a/pyaggr3g470r/templates/article.html
+++ b/pyaggr3g470r/templates/article.html
@@ -2,8 +2,7 @@
{% block content %}
<div class="container">
<div class="jumbotron">
- <h2>{{ article.title }}</h2>
- <h4>{{ article.link }}</h4>
+ <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>
</div>
@@ -11,4 +10,4 @@
{{ article.content|safe }}
</div>
</div><!-- /.container -->
-{% endblock %} \ No newline at end of file
+{% endblock %}
bgstack15