From d1e59579ca19454369d56a8c7525e109a86841e2 Mon Sep 17 00:00:00 2001 From: fschildt Date: Fri, 17 Oct 2025 14:00:16 +0200 Subject: first commit --- templates/base.html | 22 ++++++++++++++++++++++ templates/navbar.html | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 66 insertions(+) create mode 100644 templates/base.html create mode 100644 templates/navbar.html (limited to 'templates') diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..75d6ed8 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,22 @@ +{% load static %} + + + + + fsweb + + + + {% block morelinks %} + {% endblock %} + + + + {% include 'navbar.html' %} +
+ {% block content %} + {% endblock %} +
+ + + diff --git a/templates/navbar.html b/templates/navbar.html new file mode 100644 index 0000000..397c0c9 --- /dev/null +++ b/templates/navbar.html @@ -0,0 +1,44 @@ + -- cgit v1.2.3