kitsu.cafe/layouts/post.html

43 lines
1.1 KiB
HTML
Raw Normal View History

2024-10-16 08:25:29 +02:00
{% extends "page.html" %}
2024-12-04 10:27:23 +01:00
{% block head %}
{{ super() }}
<meta property="og:title" content="{{ this.title }}" />
<meta property="og:url" content="{{ this.path }}" />
<meta property="og:type" content="article" />
{% if this.locale %}
<meta property="og:locale" content="{{ this.locale }}" />
{% endif %}
{% if this.description %}
<meta property="og:description" content="{{ this.description }}" />
{% endif %}
{% if this.image %}
<meta property="og:image" content="{{ this.image }}" />
{% endif %}
2024-12-20 14:28:58 +01:00
<link rel="stylesheet" href="/static/css/blog.css">
2024-12-04 10:27:23 +01:00
{% endblock %}
2024-12-20 14:28:58 +01:00
{% block title %}
{{ this.title }} - {{ super() }}
{% endblock title %}
2024-10-16 08:25:29 +02:00
{% 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">
2024-12-04 22:13:48 +01:00
{% if this.created_date %}
2024-12-03 22:15:45 +01:00
<time datetime="{{ this.created_date }}">
Posted on {{ this.created_date | date(format=date_format) }}
</time>
2024-12-04 22:13:48 +01:00
{% else %}
Draft
{% endif %}
2024-12-03 22:15:45 +01:00
</small>
</header>
{% block article %}
{% endblock %}
</article>
2024-12-20 14:28:58 +01:00
{% endblock %}