diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-08 17:00:30 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-08 17:00:30 +0000 |
commit | fc37ba24c45874e4fe1b5568f96887e5563547e0 (patch) | |
tree | d882f5aab9c8ab7d181027efefe0e53a6c752811 /ui/html/partials/nav.tmpl.html | |
parent | ced9bbed371d7a1d7692c820f80c77f43ebd32a3 (diff) |
Added nav partial
Added a partial html for the navigation bar. So far it just has a link
to "Home" on it.
Diffstat (limited to 'ui/html/partials/nav.tmpl.html')
-rw-r--r-- | ui/html/partials/nav.tmpl.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/html/partials/nav.tmpl.html b/ui/html/partials/nav.tmpl.html new file mode 100644 index 0000000..9636855 --- /dev/null +++ b/ui/html/partials/nav.tmpl.html @@ -0,0 +1,5 @@ +{{ define "nav" }} +<nav> + <a href="/">Home</a> +</nav> +{{ end }} |