diff options
Diffstat (limited to 'templates/page.html')
-rw-r--r-- | templates/page.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 0000000..c6d8610 --- /dev/null +++ b/templates/page.html @@ -0,0 +1,15 @@ +{% import "_macros.html" as macros %} +{% extends "index.html" %} + +{% block title %}{{ page.title }} | {{ super() }} {% endblock title %} + +{% block header %} +<header class="box-shadow"> + {{ macros::render_header() }} +</header> +{% endblock header %} + +{% block content %} +<div class="heading-text">{{ page.description }}</div> +{{ page.content | safe }} +{% endblock content %}
\ No newline at end of file |