diff options
author | cyfraeviolae <cyfraeviolae> | 2025-05-16 16:00:11 -0400 |
---|---|---|
committer | cyfraeviolae <cyfraeviolae> | 2025-05-16 16:00:11 -0400 |
commit | 7cb142c3a102d359929d6b7c1aa5626413a7ba51 (patch) | |
tree | e94240c0ffc4ddc84c38d446dc5f1d58cb27f6d0 | |
parent | 70237069535333c884fecd52cbb5f39b1fb2be6c (diff) |
fix
-rw-r--r-- | src/Lib.hs | 2 | ||||
-rw-r--r-- | static/manifest.toml | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -368,7 +368,7 @@ instance ToHtml HomeView where forM_ mediums $ \Medium {tag = (MediumTag tagm), label, description, disabled} -> div_ $ do input_ $ [type_ "checkbox", name_ "m", value_ tagm, id_ tagm] - ++ [checked_ | tagm == "ReligiousArchitecture"] + ++ [checked_] ++ [disabled_ "1" | disabled] label_ (for_ tagm : [class_ "disabled" | disabled]) $ do span_ $ toHtml label <> ". " diff --git a/static/manifest.toml b/static/manifest.toml index cd5703c..e541f27 100644 --- a/static/manifest.toml +++ b/static/manifest.toml @@ -677,6 +677,7 @@ byline = "CC BY-SA 3.0 Mr. Tickle" tag = "Pottery" label = "Pottery" description = "Thou, silent form, dost tease us out of thought." +disabled = false [[mediums.works]] name = "Kamaresware jug" @@ -727,7 +728,7 @@ byline = "Public domain, Walters Art Museum" name = "West Slope kantharos" year = -300 location = "Athens" -wiki = ""https://en.wikipedia.org/wiki/Hellenistic_art#West_Slope_ware +wiki = "https://en.wikipedia.org/wiki/Hellenistic_art#West_Slope_ware" [[mediums.works.figures]] file = "westslope.jpg" byline = "Attribution Giovanni Dall'Orto" |