diff options
| author | nsfisis <nsfisis@gmail.com> | 2023-03-18 19:15:07 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2023-03-18 19:15:07 +0900 |
| commit | 1301f9d35cec5d24b772518b1daa7ffe15684525 (patch) | |
| tree | d29c78ad13e4cdb32f8d4aed95bf14a39a2ee0ca /nuldoc-src/components | |
| parent | b712e14b622aaa76f8b1a5ccfa7b21c9ba1c6d03 (diff) | |
| download | blog.nsfisis.dev-1301f9d35cec5d24b772518b1daa7ffe15684525.tar.gz blog.nsfisis.dev-1301f9d35cec5d24b772518b1daa7ffe15684525.tar.zst blog.nsfisis.dev-1301f9d35cec5d24b772518b1daa7ffe15684525.zip | |
feat(content): add link to "/tags/" to the global menu
Diffstat (limited to 'nuldoc-src/components')
| -rw-r--r-- | nuldoc-src/components/global_header.ts | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/nuldoc-src/components/global_header.ts b/nuldoc-src/components/global_header.ts index 4f7df3b..d2e6687 100644 --- a/nuldoc-src/components/global_header.ts +++ b/nuldoc-src/components/global_header.ts @@ -19,17 +19,22 @@ export function globalHeader(config: Config): Element { el( "li", [], - el("a", [["href", "/about"]], text("About")), + el("a", [["href", "/about/"]], text("About")), ), el( "li", [], - el("a", [["href", "/posts"]], text("Posts")), + el("a", [["href", "/posts/"]], text("Posts")), ), el( "li", [], - el("a", [["href", "/slides"]], text("Slides")), + el("a", [["href", "/slides/"]], text("Slides")), + ), + el( + "li", + [], + el("a", [["href", "/tags/"]], text("Tags")), ), ), ), |
