kitsu.cafe/layouts/post.html

17 lines
No EOL
435 B
HTML

{% extends "page.html" %}
{% block content %}
{% 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 %}