16 lines
218 B
Plaintext
16 lines
218 B
Plaintext
package testgotemplates
|
|
|
|
import "html/template"
|
|
|
|
var example = template.Must(template.New("example").Parse(`<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
{{ . }}
|
|
</body>
|
|
</html>
|
|
`))
|
|
|
|
templ greeting() {
|
|
<div>Hello, World!</div>
|
|
}
|