From 61d1aa04d8d44b17bfe6dace90088669fc6c3df8 Mon Sep 17 00:00:00 2001 From: Kyle McFarland Date: Wed, 31 Jan 2018 00:51:07 -0600 Subject: Initial import * Registration system's almost done * Just part way through implementing tasks So not much done yet, but it's a start. --- tmpl/base.tmpl | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 tmpl/base.tmpl (limited to 'tmpl/base.tmpl') diff --git a/tmpl/base.tmpl b/tmpl/base.tmpl new file mode 100644 index 0000000..b0fa3f3 --- /dev/null +++ b/tmpl/base.tmpl @@ -0,0 +1,64 @@ + + + + {% block title %}{% endblock %} + + + {% block head_css_standard %} + + + + {% endblock %} + {% block head_extra %}{% endblock %} + + + +
+ {% block alerts %} + {% for alert in danger_alerts %} +
+ {{ alert | raw }} +
+ {% endfor %} + {% for alert in success_alerts %} +
+ {{ alert | raw }} +
+ {% endfor %} + {% endblock %} + +
+{% block page_contents %}{% endblock %} +
+
+ {% block body_js %} + + + {%- endblock %} + + -- cgit v1.1