Add template
This commit is contained in:
parent
7fc76bdb93
commit
774faa3ea4
6
main.go
6
main.go
@ -23,7 +23,8 @@ package main
|
||||
// import "git.sangeeth.dev/gobyexample/defers"
|
||||
// import "git.sangeeth.dev/gobyexample/recovering"
|
||||
// import "git.sangeeth.dev/gobyexample/stringfuncs"
|
||||
import "git.sangeeth.dev/gobyexample/formatting"
|
||||
// import "git.sangeeth.dev/gobyexample/formatting"
|
||||
import "git.sangeeth.dev/gobyexample/templates"
|
||||
|
||||
func main() {
|
||||
// runes.Runes()
|
||||
@ -49,5 +50,6 @@ func main() {
|
||||
// defers.Defers()
|
||||
// recovering.Recover()
|
||||
// stringfuncs.StringFuncs()
|
||||
formatting.Formatting()
|
||||
// formatting.Formatting()
|
||||
templates.Templates()
|
||||
}
|
||||
|
43
templates/templates.go
Normal file
43
templates/templates.go
Normal file
@ -0,0 +1,43 @@
|
||||
package templates
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"strings"
|
||||
"text/template"
|
||||
)
|
||||
|
||||
func CreateTemplate(label, content string) *template.Template {
|
||||
return template.Must(template.New(label).Parse(content))
|
||||
}
|
||||
|
||||
func Templates() {
|
||||
t1 := CreateTemplate("bioList", `
|
||||
<dl>
|
||||
{{range . -}}
|
||||
<dt>{{ .Name }}</dt>
|
||||
<dd>
|
||||
<p>{{ .Bio }}</p>
|
||||
<p>{{ if .IsAdult -}} Adult {{- else -}} Teen {{- end }}</p>
|
||||
</dd>
|
||||
{{end}}
|
||||
</dl>
|
||||
`)
|
||||
peeps := []struct {
|
||||
Name, Bio string
|
||||
Age uint
|
||||
IsAdult bool
|
||||
}{
|
||||
{"Paul Atreides", "Duke of Arrakis, Lisan Al Gaib", 24, true},
|
||||
{"Leto Atreides", "Former Duke of Arrakis and father of Paul Atreides", 43, true},
|
||||
{"Hidenori", "Unrelated character from DLoHB", 16, false},
|
||||
}
|
||||
|
||||
t1.Execute(os.Stdout, peeps)
|
||||
|
||||
var b strings.Builder
|
||||
t1.Execute(&b, peeps)
|
||||
output := fmt.Sprintf("<body>\n%s</body>\n", b.String())
|
||||
fmt.Println("Output as follows:")
|
||||
fmt.Println(output)
|
||||
}
|
Loading…
Reference in New Issue
Block a user