13 lines
255 B
HTML
13 lines
255 B
HTML
|
{% extends "index.html" %}
|
||
|
|
||
|
{% block header %}
|
||
|
<title>{{ page.title }} | elias </title>
|
||
|
{% endblock header %}
|
||
|
|
||
|
{% block content %}
|
||
|
<article>
|
||
|
<h1>{{ page.title }}</h1>
|
||
|
{{ page.content | safe }}
|
||
|
</article>
|
||
|
{% endblock content %}
|