diff options
author | Brandon <brandon@btkoch.xyz> | 2024-10-26 19:51:38 -0400 |
---|---|---|
committer | Brandon <brandon@btkoch.xyz> | 2024-10-26 19:51:38 -0400 |
commit | cd0279d2787bbf265e12e309b8a61489c727bb2a (patch) | |
tree | 929cb425266bb2224665c1c989bffebe2d172f4f /layouts/partials/menu.html |
create repo
Diffstat (limited to 'layouts/partials/menu.html')
-rw-r--r-- | layouts/partials/menu.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/layouts/partials/menu.html b/layouts/partials/menu.html new file mode 100644 index 0000000..bac3fe2 --- /dev/null +++ b/layouts/partials/menu.html @@ -0,0 +1,7 @@ +<nav aria-label="Main Navigation"> + <ul> + {{ range .Site.Menus.main }} + <li><a href="{{ .URL }}">{{ .Name }}</a></li> + {{ end }} + </ul> +</nav> |