From d24f9d16517a4be1907ba5f5bb65ff005ce03977 Mon Sep 17 00:00:00 2001 From: Oliver Hofmann Date: Mon, 27 Apr 2026 08:54:17 +0200 Subject: [PATCH] feat: add base layout template with red navbar and footer --- app/static/.gitkeep | 0 app/templates/base.html | 49 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 app/static/.gitkeep create mode 100644 app/templates/base.html diff --git a/app/static/.gitkeep b/app/static/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/app/templates/base.html b/app/templates/base.html new file mode 100644 index 0000000..7406a33 --- /dev/null +++ b/app/templates/base.html @@ -0,0 +1,49 @@ + + + + + + {% block title %}EFI Hub{% endblock %} + + + + + + + +
+ {% block content %}{% endblock %} +
+ + + + + \ No newline at end of file