website/templates/page.html
2026-04-29 17:17:46 +01:00

8 lines
166 B
HTML

{% extends "base.html" %}
{% block title %}ily {{ page.slug }}{% endblock %}
{% block content %}
<h1>{{ page.title }}</h1>
{{ page.content | safe }}
{% endblock %}