all repos — gomponents @ 12acb8041060306b361109b46f9f05dbb4382ea0

HTML components in pure Go

Add full example app (#204) Also, remove the other examples and simplify the readme.

Markus Wüstenberg
commit

12acb8041060306b361109b46f9f05dbb4382ea0

parent

69b0da41dff1813f3939cf4ea09fbbb2d06b7719

1 file changed, 25 insertions(+), 0 deletions(-)

changed files
A internal/examples/app/html/about.go
@@ -0,0 +1,25 @@
+package html + +import ( + "time" + + . "github.com/maragudk/gomponents" + . "github.com/maragudk/gomponents/html" +) + +func AboutPage() Node { + now := time.Now() + + return page("About", + H1(Text("About")), + + P(Textf("Built with gomponents and rendered at %v.", now.Format(time.TimeOnly))), + + P( + If(now.Second()%2 == 0, Text("It's an even second!")), + If(now.Second()%2 != 0, Text("It's an odd second!")), + ), + + Img(Class("max-w-sm"), Src("https://www.gomponents.com/images/logo.png"), Alt("gomponents logo")), + ) +}