2023-12-11 22:52:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
{% extends "root.html" %}
|
|
|
|
|
|
|
|
{% block second_title %}
|
|
|
|
<h2> {{ post.post_metadata.title }} </h2>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{%block main_content%}
|
|
|
|
|
|
|
|
{{ include('fragments/filepath_bar.html') }}
|
|
|
|
|
|
|
|
<article>
|
|
|
|
{%block content_article %}
|
|
|
|
{%endblock%}
|
2023-12-20 19:20:24 +01:00
|
|
|
|
|
|
|
<span id="content_footer">
|
|
|
|
This article was created on {{ post.post_create_time }}, last edited {{ post.post_update_time }}, and was viewed {{ post.post_access_counter }} times~
|
|
|
|
</span>
|
2023-12-11 22:52:30 +01:00
|
|
|
</article>
|
|
|
|
|
|
|
|
{%endblock%}
|