12 lines
240 B
HTML
12 lines
240 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block title %}
|
|
{{ page.title }} — {{ config.title }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ page.title }}</h1>
|
|
{{ page.content | safe }}
|
|
{{ macros::page_info(page=page) }}
|
|
{% endblock content %}
|