feature: First working version with dummy content
Some checks failed
build-site / build (push) Failing after 6m4s

This commit is contained in:
Keith Solomon
2025-11-29 12:27:20 -06:00
parent db4058539a
commit e6f6ea5846
19 changed files with 1193 additions and 1 deletions

15
templates/header.html Normal file
View File

@@ -0,0 +1,15 @@
<header class="site-header">
<div class="brand">
<a href="/">Dev Notes</a>
</div>
<nav class="nav">
{{navLinks}}
</nav>
<div class="search">
<label class="sr-only" for="search-input">Search notes</label>
<input id="search-input" type="search" placeholder="Search notes..." autocomplete="off" />
<div id="search-results" class="search-results" aria-live="polite"></div>
</div>
</header>