2023-12-11 22:52:30 +01:00
{% extends "root.html" %}
2023-12-25 20:13:00 +01:00
{% block feed_links %}
2024-01-11 16:53:37 +01:00
{{ parent() }}
< link rel = "alternate" type = "application/atom+xml" title = "{{og.site_name}} Feed for {{post.post_path}}" href = "{{site_config.uri_prefix}}/feed/atom{{post.post_path}}" >
2023-12-25 20:13:00 +01:00
{% endblock %}
2023-12-11 22:52:30 +01:00
{% 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" >
2023-12-23 10:52:29 +01:00
This article was created on {{ post.post_create_time }}, last edited {{ post.post_update_time }}, and was viewed {{ post.post_access_count }} times~
2023-12-20 19:20:24 +01:00
< / span >
2023-12-11 22:52:30 +01:00
< / article >
{%endblock%}