zola-inky-fork/templates/page.html

12 lines
245 B
HTML
Raw Normal View History

2023-02-20 11:24:42 +00:00
{% extends "base.html" -%}
{% block title -%}
2023-02-01 17:58:59 +00:00
{{ config.title }} | {{page.title}}
2023-02-20 11:24:42 +00:00
{% endblock title -%}
{% block content -%}
2023-02-01 17:58:59 +00:00
<h1 class="title">
{{ page.title }}
</h1>
<article>
{{ page.content | safe }}
</article>
2023-02-20 11:24:42 +00:00
{% endblock content -%}