zola-inky-fork/templates/page.html
2023-02-20 11:24:42 +00:00

12 lines
245 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 -%}