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 %}
|
|
|
|
{% endblock %}
|
|
|
|
|
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">
|
|
|
|
<time datetime="{{ this.created_date }}">
|
|
|
|
Posted on {{ this.created_date | date(format=date_format) }}
|
|
|
|
</time>
|
|
|
|
</small>
|
|
|
|
</header>
|
|
|
|
{% block article %}
|
|
|
|
{% endblock %}
|
|
|
|
</article>
|
|
|
|
{% endblock %}
|