summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
authorJake Zerrer <him@jakezerrer.com>2026-01-13 09:55:51 -0500
committerJake Zerrer <him@jakezerrer.com>2026-01-13 09:55:54 -0500
commit8ea8acc701714bc0b74565b6dffb06aceef11f76 (patch)
treeb134205d5140e520e151436360c02b32ba6690c6 /home
parentbe1f922e8e97421b54f168093eca4eaca603b9b4 (diff)
Add media queue
Diffstat (limited to 'home')
-rw-r--r--home/src/pages.clj18
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