dragon_fire/www/templates/render_templates/vanilla.html

17 lines
330 B
HTML
Raw Normal View History

{% extends "pathed_content.html" %}
2024-01-04 16:06:06 +01:00
{% block opengraph_tags %}
{{ parent() }}
<meta property="og:type" content="article" />
{%endblock %}
{%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 }}
{% endblock %}