diff options
| author | Joe Carstairs <me@joeac.net> | 2026-06-02 18:07:43 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-06-02 18:07:43 +0100 |
| commit | 94e5dfd091b6413250398821917efff76e12724f (patch) | |
| tree | 5ecdcbe5a5978becad7f02e4641a858fa4204d3d /http/share | |
| parent | bdd64372fde1c7cdb34d4479b4483fec21e63de4 (diff) | |
http: add navbar to l.upphtml
Diffstat (limited to 'http/share')
| -rw-r--r-- | http/share/components/navbar.upphtml | 16 | ||||
| -rw-r--r-- | http/share/l.upphtml | 3 |
2 files changed, 19 insertions, 0 deletions
diff --git a/http/share/components/navbar.upphtml b/http/share/components/navbar.upphtml new file mode 100644 index 0000000..777cb40 --- /dev/null +++ b/http/share/components/navbar.upphtml @@ -0,0 +1,16 @@ +<nav> + <ul> + <li> + <a href="/">Home</a> + </li> + <li> + <a href="/blog">Blog</a> + </li> + <li> + <a href="/microlog">Microlog</a> + </li> + <li> + <a href="/contact">Contact</a> + </li> + </ul> +</nav> diff --git a/http/share/l.upphtml b/http/share/l.upphtml index 30cdba4..ea9719b 100644 --- a/http/share/l.upphtml +++ b/http/share/l.upphtml @@ -8,6 +8,9 @@ pp "${SHARE}"/components/head.upphtml </head> <body> +#! +pp "${SHARE}"/components/navbar.upphtml +#! <main> #! pp "$1" |
