use htmx for navigation

This commit is contained in:
Robin Olsen
2026-02-24 10:33:48 +01:00
parent cd2c613001
commit 5d774620dd
2 changed files with 11 additions and 7 deletions

View File

@@ -10,11 +10,15 @@ templ Sidebar(routes []NavRoutes) {
for _, r := range routes {
<li>
<a
href={ r.Path }
hx-get={ r.Path }
hx-target="main"
hx-swap="innerHTML"
class="sidebar-link rounded-lg py-2.5 px-3 text-base-content items-center"
>
if r.Icon != nil {
<span class="sidebar-icon flex items-center justify-center">@r.Icon</span>
<span class="sidebar-icon flex items-center justify-center">
@r.Icon
</span>
}
</a>
</li>