tmpl/templates/body.txt

8 lines
191 B
Plaintext
Raw Normal View History

2015-04-29 23:45:42 -07:00
{{ define "body" }}
{{ template "header" . }}
body: {{ .Name | title}} is {{ .Age }} years old
{{ template "footer" .Name }}
{{ end }}
{{ define "title" }} This is {{ . }}'s body {{ end }}