summaryrefslogtreecommitdiff
path: root/templates/partials/nav.html
diff options
context:
space:
mode:
authorseth <[email protected]>2024-10-08 11:49:47 -0400
committerGitHub <[email protected]>2024-10-08 11:49:47 -0400
commit20d62336a446bea6c5846805e8325b67cd59fe54 (patch)
tree46a92b1de1021eb0631b54f664ba0c2ddf6752c6 /templates/partials/nav.html
parent07cb04200916169671b9c426fbfe9a24bb0fa79e (diff)
nice redesign (#145)
* nix: drop treefmt * nix: remove .envrc * nix: move `serve` to apps output * nice redesign * use local stylesheet * nix: fix build
Diffstat (limited to 'templates/partials/nav.html')
-rw-r--r--templates/partials/nav.html10
1 files changed, 3 insertions, 7 deletions
diff --git a/templates/partials/nav.html b/templates/partials/nav.html
index e65db1d..bd74873 100644
--- a/templates/partials/nav.html
+++ b/templates/partials/nav.html
@@ -1,9 +1,5 @@
<nav>
- <div id="nav_links">
- {% for link in config.extra.nav_links %}
- <a href="{{ link.url }}">{{ link.name }}</a>
- {% endfor %}
- </div>
-
- <hr />
+ {% for link in config.extra.nav_links %}
+ <div><a href="{{ link.url }}">{{ link.name }}</a></div>
+ {% endfor %}
</nav>