2018-10-22 12:42:37 +04:00
|
|
|
{% extends "base" %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
|
|
|
|
<section class="single article">
|
2018-10-23 10:18:56 +04:00
|
|
|
<p class="mate">{{ article.timestamp | date(format="%B %d, %Y") }}</p>
|
|
|
|
<h2>{{ article.article.title }}</h2>
|
2018-10-22 12:42:37 +04:00
|
|
|
<section class="content yue">
|
2018-10-23 10:18:56 +04:00
|
|
|
{{ article.markdown_content | safe }}
|
2018-10-22 12:42:37 +04:00
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|
{% endblock body %}
|