From e9349c8339ac984adf9ca73db0d0db1afecf6d9b Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sat, 21 Aug 2021 10:21:21 -0400 Subject: [PATCH] Main page setup --- templates/base.html | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 templates/base.html diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..c08866c --- /dev/null +++ b/templates/base.html @@ -0,0 +1,37 @@ + + + + {% block head %} + + + + {% block title %}{% endblock title %} | {{config.extra.name}} + + + + + + + {% endblock head %} + + +
+
+ {% block profile %} + {% endblock profile %} +
+ +
+ {% block content %} + {% endblock content %} +
+
+ + \ No newline at end of file