blog/themes/retro-future/templates/page.html
2025-12-12 15:30:04 +11:00

13 lines
400 B
HTML

{% extends "base.html" %}
{% block title %}{{ page.title }} · {{ config.title }}{% endblock title %}
{% block description %}{{ page.description | default(value=page.summary) | default(value=config.description) }}{% endblock description %}
{% block content %}
<h1 class="page-title">{{ page.title }}</h1>
<div class="page-content">
{{ page.content | safe }}
</div>
{% endblock content %}