aboutsummaryrefslogtreecommitdiff
path: root/templates/partials/header.html
diff options
context:
space:
mode:
authorfoswret <foswret@posteo.com>2026-03-23 10:59:35 -0500
committerfoswret <foswret@posteo.com>2026-03-23 10:59:35 -0500
commit91c4cd062960cfc9f81e4816c58844aa8413745d (patch)
treece7c5a485152e9eac9f5e47cff5885134f202c5a /templates/partials/header.html
parentb1c4ed512419798d876e05fe77ef94401db32935 (diff)
change style.css, change navbar font style & structure
Diffstat (limited to 'templates/partials/header.html')
-rw-r--r--templates/partials/header.html14
1 files changed, 13 insertions, 1 deletions
diff --git a/templates/partials/header.html b/templates/partials/header.html
index 9dbc6eb..3400a2b 100644
--- a/templates/partials/header.html
+++ b/templates/partials/header.html
@@ -1,4 +1,16 @@
+<header>
+
<!-- if "title" is set in config.toml, display site name -->
{% if config.title %}
- <h1>{{ config.title }}</h1>
+<div class="header-item">
+ <h1 id="site-title">{{ config.title }}</h1>
+</div>
{% endif %}
+
+<!-- include navigation bar -->
+<nav class="header-item">
+ {% include "partials/nav.html" %}
+</nav>
+
+</header>
+