10 lines
263 B
HTML
10 lines
263 B
HTML
{% import "_macros.html" as macros %}
|
|
{% extends "index.html" %}
|
|
|
|
{% block title %}{{ page.title }} | {{ super() }} {% endblock title %}
|
|
|
|
|
|
{% block content %}
|
|
<div class="heading-text">{{ page.description }}</div>
|
|
{{ page.content | safe }}
|
|
{% endblock content %}
|