From a89cbdd02ad8f0b72e8ce207833d2d0d03f8b2e1 Mon Sep 17 00:00:00 2001 From: Corban-Lee Jones Date: Tue, 5 Nov 2024 23:29:13 +0000 Subject: [PATCH] navbar to own file --- templates/base.html | 103 +-------------------------------- templates/includes/navbar.html | 67 +++++++++++++++++++++ 2 files changed, 69 insertions(+), 101 deletions(-) create mode 100644 templates/includes/navbar.html diff --git a/templates/base.html b/templates/base.html index b39e11e..e1fa7a6 100644 --- a/templates/base.html +++ b/templates/base.html @@ -31,7 +31,6 @@ - {% compress css %} {% endcompress %} @@ -41,107 +40,11 @@ - + {% include "includes/navbar.html" %} {% block content %} {% endblock %} - - - - {% block scripts %} - {% endblock scripts %} + {% block scripts %} {% endblock %} \ No newline at end of file diff --git a/templates/includes/navbar.html b/templates/includes/navbar.html new file mode 100644 index 0000000..ffcf454 --- /dev/null +++ b/templates/includes/navbar.html @@ -0,0 +1,67 @@ +{% load static %} + + \ No newline at end of file