diff options
| author | Jake Zerrer <him@jakezerrer.com> | 2025-12-15 08:56:11 -0500 |
|---|---|---|
| committer | Jake Zerrer <him@jakezerrer.com> | 2025-12-15 08:56:23 -0500 |
| commit | 97cf51106c8afbe2d6a23fcaa9d1c657a37fec40 (patch) | |
| tree | b58f753a8f0bc1e46d5aba945189fa7a609a3657 | |
| parent | 70f2c8b0ae6e7913d4349156947f01cfdb83757e (diff) | |
Add films 2025
| -rw-r--r-- | home/404.html | 2 | ||||
| -rw-r--r-- | home/src/pages.clj | 18 |
2 files changed, 19 insertions, 1 deletions
diff --git a/home/404.html b/home/404.html index 51e5fa7..c9ae6d9 100644 --- a/home/404.html +++ b/home/404.html @@ -1,4 +1,4 @@ -<html style="font-family: monospace;"><head><style>pre { line-height: 125%; } +<html style="font-family: monospace;"><head><link rel="alternate" type="application/atom+xml" href="https://www.jakezerrer.com/feed.xml"><style>pre { line-height: 125%; } td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } diff --git a/home/src/pages.clj b/home/src/pages.clj index a793fd3..4ada75e 100644 --- a/home/src/pages.clj +++ b/home/src/pages.clj @@ -7,6 +7,7 @@ (def home-uri "/") (def books-2025-uri "/books-2025") +(def films-2025-uri "/films-2025") (def second-sex-uri "/second-sex-quotes") (def past-work-uri "/past-work") #_ @@ -24,9 +25,25 @@ (html [:li [:a {:href (str uri)} name]])) [[books-2025-uri "Selected reading list, 2025"] + [films-2025-uri "Films I enjoyed in 2025"] [second-sex-uri "The Second Sex: Selected Excerpts"] [past-work-uri "Past work"]])]]))) +(defn films-2025 + [] + (page + (html + [:<> + [:h1 "Films I enjoyed in 2025"] + [:ul + [:li "Train Dreams (2025)"] + [:li "The Secret Agent (2025)"] + [:li "Fitzcarraldo (1982)"] + [:li "Koyaanisqatsi (1982)"] + [:li "Black Narcissus (1947)"] + [:li "Anora (2024)"] + [:li "Sentimental Value (2025)"]]]))) + (defn books-2025 [] (page @@ -68,6 +85,7 @@ (defn pages [] {home-uri home books-2025-uri books-2025 + films-2025-uri films-2025 past-work-uri past-work #_#_ missionary-uri missionary |
