12 lines
178 B
HTML
12 lines
178 B
HTML
{{define "title"}}
|
|
Page 1
|
|
{{end}}
|
|
|
|
{{define "body"}}
|
|
<p>Hello from {{.name}}</p>
|
|
|
|
{{range $p := .posts}}
|
|
<p id="twt">{{$p}}<br></p>
|
|
{{end}}
|
|
{{end}}
|
|
|