aboutsummaryrefslogtreecommitdiff
path: root/cgi/user.cgi
diff options
context:
space:
mode:
authorNat Lasseter <user@4574.co.uk>2025-06-24 22:00:00 +0100
committerNat Lasseter <user@4574.co.uk>2025-06-24 22:00:00 +0100
commit73ef84047e4b0121e4d1edb33ebe145bb97b4e4c (patch)
tree7a6c0541748cba1c9af1f3b0186e825237359890 /cgi/user.cgi
parentcf988d8722909084c7b372453fcc16a16ecf697a (diff)
[links] redo with breaking
Diffstat (limited to 'cgi/user.cgi')
-rwxr-xr-xcgi/user.cgi14
1 files changed, 7 insertions, 7 deletions
diff --git a/cgi/user.cgi b/cgi/user.cgi
index 1357d65..5150157 100755
--- a/cgi/user.cgi
+++ b/cgi/user.cgi
@@ -11,13 +11,13 @@ def link(href, text, remote = false)
end
def toplinks
- $cgi.table(class: "toplinks") {
- $cgi.tr {
- $cgi.td { link("/" , "Home" ) } +
- $cgi.td { link("/bins" , "Bins" ) } +
- $cgi.td { link("/eamit.html" , "eamit" , true) } +
- $cgi.td { link("https://git.4574.co.uk/", "Git" , true) } +
- $cgi.td { link("/stuff-i-want" , "Stuff I Want" ) }
+ $cgi.nav(class: "toplinks") {
+ $cgi.ul {
+ $cgi.li { link("/" , "Home" ) } +
+ $cgi.li { link("/bins" , "Bins" ) } +
+ $cgi.li { link("/eamit.html" , "eamit" , true) } +
+ $cgi.li { link("https://git.4574.co.uk/", "Git" , true) } +
+ $cgi.li { link("/stuff-i-want" , "Stuff I Want" ) }
}
}
end