23 lines
513 B
HTML
23 lines
513 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block htmltitle %}
|
||
|
{{ article.title }}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<section class="bg-primary">
|
||
|
<div class="container text-center text-uppercase">
|
||
|
<h1 class="section-heading uppercase">{{ article.title }}</h1>
|
||
|
<hr class="light">
|
||
|
</div>
|
||
|
</section>
|
||
|
<section>
|
||
|
<div class="container">
|
||
|
<p class="text-right small">
|
||
|
Published: {{ article.date|datetime }}
|
||
|
</p>
|
||
|
{{ article.content }}
|
||
|
</div>
|
||
|
</section>
|
||
|
{% endblock %}
|