diff options
author | David Thompson <dthompson2@worcester.edu> | 2024-07-08 21:59:45 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2024-07-08 21:59:45 -0400 |
commit | da895e9da67c917965f13a0416bd34eed6f512e2 (patch) | |
tree | 3a57f728116b1e1af5bc1bece5123d5149d6c563 /theme.scm | |
parent | 576686b8362aa4be94972793e445db239e1da0e7 (diff) |
theme: Use <nav> tag and flexbox.
Diffstat (limited to 'theme.scm')
-rw-r--r-- | theme.scm | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -65,12 +65,11 @@ ,(stylesheet "dthompson")) (body (div (@ (class "container")) - (div (@ (class "nav")) - (ul (li ,(link "David Thompson" "/")) - (li (@ (class "fade-text")) " ") - (li ,(link "About" "/about.html")) - (li ,(link "Blog" "/index.html")) - (li ,(link "Projects" "/projects.html")))) + (nav + (ul (li ,(link "David Thompson" "/"))) + (ul (li ,(link "About" "/about.html")) + (li ,(link "Blog" "/index.html")) + (li ,(link "Projects" "/projects.html")))) ,body (footer (@ (class "text-center")) (p (@ (class "copyright")) |