all repos — gomponents @ 5d2f0f1b87aff69edf5b3a993afbb1ae2db946d0

HTML components in pure Go

Use g.If in HTML5 helper (#65)

Inlining looks much nicer.
Markus Wüstenberg markus@maragu.dk
Wed, 28 Apr 2021 10:42:49 +0200
commit

5d2f0f1b87aff69edf5b3a993afbb1ae2db946d0

parent

c899a050c06733965dae8ea686daab36e187ba45

1 files changed, 2 insertions(+), 9 deletions(-)

jump to
M components/documents.gocomponents/documents.go
@@ -18,20 +18,13 @@ } 
 // HTML5 document template.
 func HTML5(p HTML5Props) g.Node {
-	var lang, description g.Node
-	if p.Language != "" {
-		lang = Lang(p.Language)
-	}
-	if p.Description != "" {
-		description = Meta(Name("description"), Content(p.Description))
-	}
 	return Doctype(
-		HTML(lang,
+		HTML(g.If(p.Language != "", Lang(p.Language)),
 			Head(
 				Meta(Charset("utf-8")),
 				Meta(Name("viewport"), Content("width=device-width, initial-scale=1")),
 				TitleEl(p.Title),
-				description,
+				g.If(p.Description != "", Meta(Name("description"), Content(p.Description))),
 				g.Group(p.Head),
 			),
 			Body(g.Group(p.Body)),