aboutsummaryrefslogtreecommitdiff
path: root/users
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-01-21 11:14:06 -0800
committerFranck Cuny <franck@fcuny.net>2022-01-21 11:14:06 -0800
commite3c457f0b32c2d4c754ab80d60052b63555d6333 (patch)
treee01513cfa9768462ccb4d4ef90f9af76a88240b9 /users
parentpost: change formatting for the date (diff)
downloadinfra-e3c457f0b32c2d4c754ab80d60052b63555d6333.tar.gz
nav: align the menu items to the right
Diffstat (limited to 'users')
-rw-r--r--users/fcuny/notes/layouts/partials/header.html9
1 files changed, 7 insertions, 2 deletions
diff --git a/users/fcuny/notes/layouts/partials/header.html b/users/fcuny/notes/layouts/partials/header.html
index 9118a50..e579329 100644
--- a/users/fcuny/notes/layouts/partials/header.html
+++ b/users/fcuny/notes/layouts/partials/header.html
@@ -1,7 +1,12 @@
<header>
- <nav class='menu'>
+ <nav class="navbar">
+ <a href="{{ .Site.BaseURL }}">
+ {{ .Site.BaseURL | string }}
+ </a>
+ <ul class="nav-links">
{{ range .Site.Menus.main }}
- <a class='menu-item' href="{{ absURL .URL }}">{{ .Title }}</a>
+ <li class="nav-item"><a href="{{ absURL .URL }}">{{ .Title }}</a></li>
{{ end }}
+ </ul>
</nav>
</header>