Allows you to use Mastodon and Bluesky comments on your Lustre blog hexdocs.pm/chilp/
blog gleam lustre indieweb mastodon bluesky comments
1
fork

Configure Feed

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

Much prettier, thank you Hayleigh!

+4 -4
+2 -2
examples/lustre_chilp_app_nocomponent/src/lustre_chilp_app.gleam
··· 40 40 } 41 41 42 42 fn browse(to: String) { 43 - let Nil = js_browse(to) 44 - effect.none() 43 + use _ <- effect.from 44 + js_browse(to) 45 45 } 46 46 47 47 // UPDATE ----------------------------------------------------------------------
+2 -2
src/chilp/widget.gleam
··· 103 103 } 104 104 105 105 fn browse(to: String) { 106 - let Nil = js_browse(to) 107 - effect.none() 106 + use _ <- effect.from 107 + js_browse(to) 108 108 } 109 109 110 110 // VIEW ------------------------------------------------------------------------