From 94657fcdc0dce745053a8f7e40c6189b062a84b0 Mon Sep 17 00:00:00 2001 From: Gareth Coles Date: Wed, 21 Feb 2018 09:36:43 +0000 Subject: Jinja is weird --- templates/main/base.html | 2 +- templates/main/index.html | 12 +++++++----- templates/main/ws_test.html | 2 +- templates/staff/staff.html | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/templates/main/base.html b/templates/main/base.html index 5dd0c02c..9d692342 100644 --- a/templates/main/base.html +++ b/templates/main/base.html @@ -12,7 +12,7 @@ {% endblock %} -{% include "navigation.html" %} +{% include "main/navigation.html" %} {% block content %}{% endblock %} diff --git a/templates/main/index.html b/templates/main/index.html index 418347d2..6a447567 100644 --- a/templates/main/index.html +++ b/templates/main/index.html @@ -1,9 +1,11 @@ -{% extends "base.html" %} +{% extends "main/base.html" %} {% block title %}Home{% endblock %} {% block content %} -
-

- Coming soon :tm: -

+
+
+

+ +

+
{% endblock %} \ No newline at end of file diff --git a/templates/main/ws_test.html b/templates/main/ws_test.html index 6ef1bb68..a492fb89 100644 --- a/templates/main/ws_test.html +++ b/templates/main/ws_test.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "main/base.html" %} {% block title %}WS Test{% endblock %} {% block content %}
diff --git a/templates/staff/staff.html b/templates/staff/staff.html index 3017f65c..39f75f81 100644 --- a/templates/staff/staff.html +++ b/templates/staff/staff.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "main/base.html" %} {% block title %}Home{% endblock %} {% block content %}
-- cgit v1.2.3