10 lines
203 B
HTML
10 lines
203 B
HTML
|
{% extends "index.html" %}
|
||
|
|
||
|
{% block title %}
|
||
|
<title>{{ page.title }} - {{ config.title }}</title>
|
||
|
{% endblock title %}
|
||
|
|
||
|
{% block content %}
|
||
|
{{ page.content | safe }}
|
||
|
{% endblock content %}
|