dragon_fire/www/templates/pathed_content.html

30 lines
662 B
HTML
Raw Normal View History

{% extends "root.html" %}
{% block feed_links %}
{{ 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}}">
{% endblock %}
{% block second_title %}
2024-08-24 13:09:28 +02:00
<h2> {{ page.title }} </h2>
{% endblock %}
{%block main_content%}
2024-08-29 20:40:36 +02:00
{{ include('fragments/decoration/navbar.html') }}
2024-02-12 23:07:58 +01:00
<article id="content_article">
{%block content_article %}
{%endblock%}
<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~
</span>
</article>
{%endblock%}