diff options
author | Franck Cuny <franck@fcuny.net> | 2022-01-21 11:14:06 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-01-21 11:14:06 -0800 |
commit | e3c457f0b32c2d4c754ab80d60052b63555d6333 (patch) | |
tree | e01513cfa9768462ccb4d4ef90f9af76a88240b9 /users/fcuny/notes/layouts/partials/header.html | |
parent | post: change formatting for the date (diff) | |
download | world-e3c457f0b32c2d4c754ab80d60052b63555d6333.tar.gz |
nav: align the menu items to the right
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/notes/layouts/partials/header.html | 9 |
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> |