dragon_fire/www/templates/pathed_content.html
David Bailey 0dcf36052e
Some checks reported warnings
/ phplint (push) Has been cancelled
... unsure
2024-08-24 13:09:28 +02:00

29 lines
657 B
HTML

{% extends "root.html" %}
{% block feed_links %}
{{ parent() }}
<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 %}
<h2> {{ page.title }} </h2>
{% endblock %}
{%block main_content%}
{{ include('fragments/filepath_bar.html') }}
<article id="content_article">
{%block content_article %}
{%endblock%}
<span id="content_footer">
This page was created on {{ page.created_at }}, last edited {{ page.updated_at }}, and was viewed {{ page.view_count }} times~
</span>
</article>
{%endblock%}