2023-12-11 22:52:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
{% extends "pathed_content.html" %}
|
|
|
|
|
2024-01-04 16:06:06 +01:00
|
|
|
{% block opengraph_tags %}
|
|
|
|
{{ parent() }}
|
|
|
|
|
|
|
|
<meta property="og:type" content="article" />
|
|
|
|
{%endblock %}
|
|
|
|
|
2023-12-11 22:52:30 +01:00
|
|
|
{%block content_article%}
|
2024-08-29 20:40:36 +02:00
|
|
|
{% if page.title and (page.title != page.basename) %}
|
2024-08-24 13:09:28 +02:00
|
|
|
<h1 class="content-title"> {{ page.title }} </h1>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{{ page.html|raw }}
|
2023-12-11 22:52:30 +01:00
|
|
|
{% endblock %}
|