2019-03-22 03:31:24 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-03-22 04:30:27 +00:00
|
|
|
h "gitlab.codemonkeysoftware.net/b/hatmill"
|
2019-03-22 03:49:26 +00:00
|
|
|
"os"
|
2019-03-22 03:31:24 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2019-03-22 03:49:26 +00:00
|
|
|
document := h.Html()(
|
|
|
|
h.Head()(),
|
|
|
|
h.Body()(
|
|
|
|
h.Div()(
|
|
|
|
h.Img(h.Src("./me.jpg"), h.Id("profile-photo")),
|
|
|
|
h.Text("hello hatmill!"),
|
2019-03-22 03:58:23 +00:00
|
|
|
h.Div(h.Disabled(), h.Data("coolness", "awesome"))(),
|
2019-03-22 03:49:26 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
h.WriteDocument(os.Stdout, document)
|
2019-03-22 03:31:24 +00:00
|
|
|
}
|