From 67e33d9843c6ddc16c41a39864fefe96694577fc Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sat, 4 Apr 2020 20:11:06 +0200 Subject: [PATCH] Add page place holders --- hbbs/templates/collection.html | 5 +++++ hbbs/templates/participate.html | 5 +++++ hbbs/templates/programmes.html | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 hbbs/templates/collection.html create mode 100644 hbbs/templates/participate.html create mode 100644 hbbs/templates/programmes.html diff --git a/hbbs/templates/collection.html b/hbbs/templates/collection.html new file mode 100644 index 0000000..7022f88 --- /dev/null +++ b/hbbs/templates/collection.html @@ -0,0 +1,5 @@ +{% extends "layout.html" %} + +{% block content %} +

TODO: collection page

+{% endblock %} diff --git a/hbbs/templates/participate.html b/hbbs/templates/participate.html new file mode 100644 index 0000000..1cbb220 --- /dev/null +++ b/hbbs/templates/participate.html @@ -0,0 +1,5 @@ +{% extends "layout.html" %} + +{% block content %} +

TODO: participate page

+{% endblock %} diff --git a/hbbs/templates/programmes.html b/hbbs/templates/programmes.html new file mode 100644 index 0000000..3e06cae --- /dev/null +++ b/hbbs/templates/programmes.html @@ -0,0 +1,5 @@ +{% extends "layout.html" %} + +{% block content %} +

TODO: programmes page

+{% endblock %}