kitsu.cafe/layouts/post.html

17 lines
435 B
HTML
Raw Normal View History

2024-10-16 08:25:29 +02:00
{% extends "page.html" %}
{% block content %}
2024-12-03 22:15:45 +01:00
{% set date_format = "%d %B, %Y" %}
<article>
<header>
<h1 class="header">{{ this.title }}</h1>
<small class="muted">
<time datetime="{{ this.created_date }}">
Posted on {{ this.created_date | date(format=date_format) }}
</time>
</small>
</header>
{% block article %}
{% endblock %}
</article>
{% endblock %}