2020-11-19 15:50:39 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ SITENAME }} - {{ article.title|striptags }}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<article class="post">
|
|
|
|
|
|
|
|
<h2 class="post-title">{{ article.title }}</h2>
|
|
|
|
<div class="post-info">
|
2020-12-01 16:07:51 +01:00
|
|
|
<div class="author">
|
|
|
|
{{ article.author }}
|
|
|
|
</div>
|
|
|
|
<br>
|
2020-11-19 15:50:39 +01:00
|
|
|
<div class="date">
|
|
|
|
{{ article.locale_date }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="post-content">
|
|
|
|
{{ article.content }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</article>
|
|
|
|
{% endblock %}
|