crablog/static/archives.tera

13 lines
379 B
Plaintext
Raw Normal View History

2018-10-22 12:42:37 +04:00
{% extends "base" %}
{% block title %}{{ article.article.title }}{% endblock title %}
2018-10-22 12:42:37 +04:00
{% 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 %}