aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/article.html
blob: c05cac5ee76ee1553009a6a5c4bef99b092bf09e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "layout.html" %}
{% block content %}
<div class="container">
    <div class="jumbotron">
        <h2><a href="{{ article.link  }}">{{ article.title }}</a></h2>
        <a href="/delete/{{ article.id }}"><i class="glyphicon glyphicon-remove" title="Delete this article"></i></a>
        <h6>{{ article.date }}</h6>
    </div>
    <div class="jumbotron">
        {{ article.content|safe }}
    </div>
</div><!-- /.container -->
{% endblock %}
bgstack15