aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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