fliegendewurst.eu/templates/blog-page.html
2023-10-03 14:53:44 +02:00

16 lines
746 B
HTML

{% extends "base.html" %}
{% block html_tag %}
<html itemscope itemtype="https://schema.org/ItemPage" lang="en-US">
{% endblock html_tag %}
{% block title %}{{page.title}}{% endblock title %}
{% block content %}
<article itemid="https://fliegendewurst.eu/blog/{{page.slug}}.html" itemprop="https://schema.org/mainEntity" itemscope itemtype="https://schema.org/BlogPosting">
<h2 class="title">
{{ page.title }}
</h2>
<p class="subtitle"><strong>{{ page.date }}{% if page.updated %}
(updated <time class="dt-updated mtime updated" datetime="{{page.updated}}T00:00:00Z" itemprop="https://schema.org/dateModified" title="{{page.updated}}">{{page.updated}}</time>)
{% endif %}</strong></p>
{{ page.content | safe }}
</article>
{% endblock content %}