kitsu.cafe/layouts/post.html
2024-12-20 07:28:58 -06:00

42 lines
1.1 KiB
HTML

{% extends "page.html" %}
{% 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 %}
<link rel="stylesheet" href="/static/css/blog.css">
{% endblock %}
{% block title %}
{{ this.title }} - {{ super() }}
{% endblock title %}
{% block content %}
{% set date_format = "%d %B, %Y" %}
<article>
<header>
<h1 class="header">{{ this.title }}</h1>
<small class="muted">
{% if this.created_date %}
<time datetime="{{ this.created_date }}">
Posted on {{ this.created_date | date(format=date_format) }}
</time>
{% else %}
Draft
{% endif %}
</small>
</header>
{% block article %}
{% endblock %}
</article>
{% endblock %}