From 90971568a31ed4d31073bc50ef8fe7b388aae66a Mon Sep 17 00:00:00 2001 From: James Brechtel Date: Mon, 25 May 2026 22:01:24 -0400 Subject: [PATCH] feat: add cook history nav link to index page --- src/Roux/Html.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Roux/Html.hs b/src/Roux/Html.hs index d2c0298..3836de7 100644 --- a/src/Roux/Html.hs +++ b/src/Roux/Html.hs @@ -705,6 +705,7 @@ indexPage _mode recipes = H.li $ H.a ! A.href "#tags" $ "By Tag" H.li $ H.a ! A.href "#course" $ "By Course" H.li $ H.a ! A.href "/import" $ "Import" + H.li $ H.a ! A.href "/cook-history" $ "Cook History" -- Search input H.input ! A.type_ "search"