initial commit - added base, need to fix templ errors

This commit is contained in:
2025-08-17 10:58:31 +00:00
commit 59d82ae563
20 changed files with 1512 additions and 0 deletions

11
templates/nav.templ Normal file
View File

@@ -0,0 +1,11 @@
package templates
templ Nav() {
<nav class="nav">
<a href="/" hx-get="/" hx-target="main" hx-push-url="true">home</a>
<a href="/tags" hx-get="/tags" hx-target="main" hx-push-url="true">tags</a>
<a href="/about" hx-get="/about" hx-target="main" hx-push-url="true">about</a>
<a href="/archive" hx-get="/archive" hx-target="main" hx-push-url="true">archive</a>
<a href="mailto:valentine.bott@gmail.com">Contact Me</a>
</nav>
}