33 lines
959 B
HTML
33 lines
959 B
HTML
|
|
|
|
{% extends "root.html" %}
|
|
|
|
{% block feed_links %}
|
|
<link rel="alternate" type="application/rss+xml" title="DergSite Global Feed" href="https://lucidragons.de/feed">
|
|
<link rel="alternate" type="application/atom+xml" title="DergSite Feed for {{post.post_path}}" href="https://lucidragons.de/feed/atom{{post.post_path}}">
|
|
{% endblock %}
|
|
|
|
{% block second_title %}
|
|
<h2> {{ post.post_metadata.title }} </h2>
|
|
{% endblock %}
|
|
|
|
{% block opengraph_tags %}
|
|
<meta property="og:title" content="{{ post.post_metadata.title }}" />
|
|
<meta property="og:url" content="https://lucidragons.de{{post.post_path}}" />
|
|
{% endblock %}
|
|
|
|
|
|
{%block main_content%}
|
|
|
|
{{ include('fragments/filepath_bar.html') }}
|
|
|
|
<article>
|
|
{%block content_article %}
|
|
{%endblock%}
|
|
|
|
<span id="content_footer">
|
|
This article was created on {{ post.post_create_time }}, last edited {{ post.post_update_time }}, and was viewed {{ post.post_access_count }} times~
|
|
</span>
|
|
</article>
|
|
|
|
{%endblock%}
|