pyro/templates/page.html
Freyja Wildes 7cdaee3da5 [style][template] Make header tag consistent with semantic in pages
Change title page tag for a <h1> from <h2>
2025-07-11 05:17:06 +02:00

7 lines
190 B
HTML

{% extends 'index.html' %}
{% block title %}{{ super() }} — {{ page.title|striptags }}{% endblock title %}
{% block content %}
<h1>{{ page.title }}</h1>
{{ page.content }}
{% endblock %}