8 lines
139 B
Go Template
8 lines
139 B
Go Template
{{define "content" -}}
|
|
{{with .Data}}
|
|
<h1>{{.Heading}}</h1>
|
|
<p>{{.Body}}</p>
|
|
<p><a href="{{.Back}}">« back</a></p>
|
|
{{end}}
|
|
{{- end}}
|