29 lines
657 B
HTML
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%}
|