Files
stevenlr.com/templates/page.html
2023-11-01 21:02:09 +01:00

15 lines
242 B
HTML

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