💻 My corner on the internet kacaii.dev/
lustre evergarden wisp-place gleam atproto
2

Configure Feed

Select the types of activity you want to include in your feed.

blog/footer: move "probably" to outside the case expression

kacaii.dev (Jul 15, 2026, 7:48 PM -0300) 33d6f3fc c93da476

+5 -5
+5 -5
src/blog/footer.gleam
··· 12 12 let wisp_href = attribute.href("https://wisp.place") 13 13 14 14 let awake_or_sleeping = { 15 - let probably_is = case is_awake() { 16 - True -> "probably awake " 17 - False -> "probably sleeping " 15 + let state = case is_awake() { 16 + True -> "awake" 17 + False -> "sleeping" 18 18 } 19 19 20 20 html.span([attribute.class("hidden md:inline")], [ 21 - html.text(probably_is <> "at this time"), 21 + html.text("probably " <> state <> " at this time"), 22 22 ]) 23 23 } 24 24 25 25 html.footer([attribute.class("vstack")], [ 26 26 html.hr([]), 27 27 28 - html.small([attribute.class("justify-between px-2 hstack text-muted")], [ 28 + html.small([attribute.class("hstack text-muted justify-between px-2")], [ 29 29 html.p([attribute.class("hstack")], [ 30 30 html.text("(c) kacaii.dev 2026."), 31 31 awake_or_sleeping,