From 5c9e8ca60a794474333aaf650c21e2688672a095 Mon Sep 17 00:00:00 2001 From: Favour Eezh Date: Thu, 5 Mar 2026 20:07:41 +0000 Subject: [PATCH] Add base template with Bootstrap navbar Create src/dashboard/templates/base.html providing a base Jinja template for the dashboard. Includes Bootstrap 5.3 CSS/JS, responsive meta tags, site title, a dark navbar (Smart Campus Environmental System / 4005CMD - Coventry University), and a main container with a {% block content %} for page-specific content. Links to static style.css and script.js are included. --- src/dashboard/templates/base.html | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/src/dashboard/templates/base.html b/src/dashboard/templates/base.html index e69de29..0a2e18a 100644 --- a/src/dashboard/templates/base.html +++ b/src/dashboard/templates/base.html @@ -0,0 +1,34 @@ + + + + + + Environmental Campus Monitor + + + + + + + + + +
+ {% block content %} + {% endblock %} +
+ + + + + + \ No newline at end of file