zola-inky-fork/templates/page.html
2023-02-01 17:58:59 +00:00

16 lines
244 B
HTML

{% extends "base.html" %}
{% block title %}
{{ config.title }} | {{page.title}}
{% endblock title %}
{% block content %}
<h1 class="title">
{{ page.title }}
</h1>
<article>
{{ page.content | safe }}
</article>
{% endblock content %}