diff options
Diffstat (limited to 'home')
| -rw-r--r-- | home/src/pages.clj | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/home/src/pages.clj b/home/src/pages.clj index d04b698..6515f34 100644 --- a/home/src/pages.clj +++ b/home/src/pages.clj @@ -6,6 +6,7 @@ [components :refer [template page]])) (def home-uri "/") +(def media-queue-uri "/media-queue") (def books-2026-uri "/books-2026") (def books-2025-uri "/books-2025") (def films-2025-uri "/films-2025") @@ -25,7 +26,8 @@ (fn [[uri name]] (html [:li [:a {:href (str uri)} name]])) - [[books-2026-uri "Favorite reads of 2026"] + [[media-queue-uri "My media queue"] + [books-2026-uri "Favorite reads of 2026"] [books-2025-uri "Favorite reads of 2025"] [films-2025-uri "Films I enjoyed in 2025"] [second-sex-uri "The Second Sex: Selected Excerpts"] @@ -71,6 +73,19 @@ [:ul [:li "The Price of Peace (Zachary D. Carter)"]]]))) +(defn media-queue + [] + (page + (html + [:<> + [:h1 "My media queue"] + [:p "This page contains a list of media that I'd like to read, watch, listen to, otherwise consume at some point. Think of it kind of like my public bookmarks."] + [:ul + [:li "Introduction to Algorithms (Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Clifford Stein)"] + [:li + [:a {:href "https://www.youtube.com/watch?v=jdn617M3-P4"} + "Exotic Functional Data Structures: Hitchhiker Trees by David Greenberg (YouTube)"]]]]))) + (defn past-work [] (page @@ -96,6 +111,7 @@ (defn pages [] {home-uri home + media-queue-uri media-queue books-2026-uri books-2026 books-2025-uri books-2025 films-2025-uri films-2025 |
