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() }}
2024-08-24 13:09:28 +02:00
< link rel = "alternate" type = "application/atom+xml" title = "{{opengraph.site_name}} Feed for {{page.path}}" href = "{{page.uri_prefix}}/feed/atom{{page.path}}" >
2023-12-25 20:13:00 +01:00
{% endblock %}
2023-12-11 22:52:30 +01:00
{% block second_title %}
2024-08-24 13:09:28 +02:00
< h2 > {{ page.title }} < / h2 >
2023-12-11 22:52:30 +01:00
{% endblock %}
{%block main_content%}
2024-08-29 20:40:36 +02:00
{{ include('fragments/decoration/navbar.html') }}
2023-12-11 22:52:30 +01:00
2024-02-12 23:07:58 +01:00
< article id = "content_article" >
2023-12-11 22:52:30 +01:00
{%block content_article %}
{%endblock%}
2023-12-20 19:20:24 +01:00
< span id = "content_footer" >
2024-08-24 13:09:28 +02:00
This page was created on {{ page.created_at }}, last edited {{ page.updated_at }}, and was viewed {{ page.view_count }} times~
2023-12-20 19:20:24 +01:00
< / span >
2023-12-11 22:52:30 +01:00
< / article >
{%endblock%}