dragon_fire/www/templates/pathed_content.html

29 lines
666 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/decoration/navbar.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.counters.views }} times~
</span>
</article>
{%endblock%}