aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/article.html
diff options
context:
space:
mode:
Diffstat (limited to 'pyaggr3g470r/templates/article.html')
-rw-r--r--pyaggr3g470r/templates/article.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/article.html b/pyaggr3g470r/templates/article.html
index 28c53714..d695a423 100644
--- a/pyaggr3g470r/templates/article.html
+++ b/pyaggr3g470r/templates/article.html
@@ -2,9 +2,10 @@
{% block content %}
<div class="container">
<div class="jumbotron">
- <h1>{{ article.title }}</h1>
+ <h2>{{ article.title }}</h2>
<h4>{{ article.link }}</h4>
<h6>{{ article.date }}</h6>
+ <a href="/delete/{{ article.id }}"><i class="glyphicon glyphicon-remove"></i></a>
</div>
<div class="jumbotron">
{{ article.content|safe }}
bgstack15