From 73b06c31b505d1a0f2e4035c7daab0df49a25d3b Mon Sep 17 00:00:00 2001 From: foswret Date: Sun, 22 Mar 2026 12:54:35 -0500 Subject: implement basic nav bar --- templates/partials/header.html | 4 ++++ templates/partials/nav.html | 7 +++++++ 2 files changed, 11 insertions(+) create mode 100644 templates/partials/header.html create mode 100644 templates/partials/nav.html (limited to 'templates/partials') diff --git a/templates/partials/header.html b/templates/partials/header.html new file mode 100644 index 0000000..9dbc6eb --- /dev/null +++ b/templates/partials/header.html @@ -0,0 +1,4 @@ + +{% if config.title %} +

{{ config.title }}

+{% endif %} diff --git a/templates/partials/nav.html b/templates/partials/nav.html new file mode 100644 index 0000000..f8c0eff --- /dev/null +++ b/templates/partials/nav.html @@ -0,0 +1,7 @@ +{% if config.extra.navbar_items %} +{% for item in config.extra.navbar_items %} + +{% endfor %} +{% endif %} -- cgit v1.2.3