diff --git a/templates/index.html b/templates/index.html index e22cb69..e8668b4 100644 --- a/templates/index.html +++ b/templates/index.html @@ -34,7 +34,9 @@ {% endif %} -
content
+
+ {% block content%}{% endblock %} +
diff --git a/templates/page.html b/templates/page.html index 09763b9..6fc3f6e 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1 +1,5 @@ {% extends "index.html" %} + +{% block content %} + {{ page.content | safe }} +{% endblock %}