13 lines
195 B
Plaintext
13 lines
195 B
Plaintext
{{define "page"}}
|
|
<html>
|
|
<body>
|
|
{{template "title" .Props.Title}}
|
|
{{template "content" .Props.Content}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|
|
|
|
{{define "content"}}
|
|
<p>{{.}}</p>
|
|
{{end}}
|