go-tmpl-demo

ref: master

./base.html


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{{.Title}}
{{ printf "%#v" . }}

{{define "base"}}
	<!doctype html>
	<html lang="en">
		<head>
			<title>
				{{block "title" .}}
					Go test
				{{end}}
			</title>
		</head>
		<body>
			{{.Title}}
			{{ printf "%#v" . }}

      {{block "body" .}}
      {{end}}
			<footer>
				Footer
			</footer>
		</body>
	</html>
{{end}}