all repos — gomponents @ 7c0f2e4cbb4da6d7074bd78be9c55d3495c0dad7

HTML components in pure Go

components/elements.go (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package components

import (
	g "github.com/maragudk/gomponents"
	. "github.com/maragudk/gomponents/html"
)

func InputHidden(name, value string, children ...g.Node) g.Node {
	return Input(Type("hidden"), Name(name), Value(value), g.Group(children))
}

func LinkStylesheet(href string, children ...g.Node) g.Node {
	return Link(Rel("stylesheet"), Href(href), g.Group(children))
}

func LinkPreload(href, as string, children ...g.Node) g.Node {
	return Link(Rel("preload"), Href(href), As(as), g.Group(children))
}