14 lines
226 B
HTML
14 lines
226 B
HTML
{{template "layout.html" .}}
|
|
|
|
{{define "title"}}{{ title .Name }}{{end}}
|
|
|
|
{{define "content"}}
|
|
<h1>{{ title .Name }}</h1>
|
|
{{ .Race }} {{ .Type }}
|
|
|
|
<h3>Events</h3>
|
|
|
|
{{ template "events.html" . }}
|
|
|
|
<p>{{ json . }}</p>
|
|
{{- end }} |