From d47b1b047848257fb1f35032740575ca949d106a Mon Sep 17 00:00:00 2001 From: Joshua Laymon Date: Wed, 13 Aug 2025 05:53:11 +0000 Subject: [PATCH] Update web/templates/base.html --- web/templates/base.html | 155 +++++++++++++++++++++++++++++++--------- 1 file changed, 120 insertions(+), 35 deletions(-) diff --git a/web/templates/base.html b/web/templates/base.html index 984520b..d80d2d0 100644 --- a/web/templates/base.html +++ b/web/templates/base.html @@ -1,47 +1,132 @@ {% load static %} - - - - {% block title %}Illustrations{% endblock %} - - - - - - + + {% block title %}Illustrations{% endblock %} + + + + {% block extra_head %}{% endblock %} + - - + +
+
+ + Illustrations + Reference Database + - -
- {% block content %} - {% endblock %} -
+ +
+
+ + +
+ {% if messages %} +
+ {% for message in messages %} +
{{ message }}
+ {% endfor %} +
+ {% endif %} +
+ + +
+ {% block content %}{% endblock %} +
+ + {% block extra_body %}{% endblock %} \ No newline at end of file