diff options
Diffstat (limited to 'templates/page.html')
-rw-r--r-- | templates/page.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 0000000..ce0155e --- /dev/null +++ b/templates/page.html @@ -0,0 +1,8 @@ +{% extends "index.html" %} +{% block title %} + {{ config.title }} | {{ page.title }} +{% endblock title %} +{% block content %} + <center><h3> {{ page.title }} </h3></center> + {{ page.content | safe }} +{% endblock content %} |