13 lines
400 B
HTML
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 %}
|