diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-10-28 07:58:09 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-10-28 07:58:09 +0100 |
commit | 2a2550cb449375b9138fb37214268ee6ab49423d (patch) | |
tree | 5e9d39c0981a992dbd26a9ff925be504adb02929 | |
parent | Added link to the site of the feed. (diff) | |
download | newspipe-2a2550cb449375b9138fb37214268ee6ab49423d.tar.gz newspipe-2a2550cb449375b9138fb37214268ee6ab49423d.tar.bz2 newspipe-2a2550cb449375b9138fb37214268ee6ab49423d.zip |
Link to the original article.
-rw-r--r-- | pyaggr3g470r/templates/article.html | 5 |
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 %} |