2022-04-16 23:12:23 +03:00
|
|
|
{{template "layout.html" .}}
|
|
|
|
|
|
|
|
{{define "title"}}{{ title .Name }}{{end}}
|
|
|
|
|
|
|
|
{{define "content"}}
|
2022-04-18 11:36:29 +03:00
|
|
|
<h1>{{ title .Name }}</h1>
|
|
|
|
{{ .Race }} {{ .Type }}
|
|
|
|
|
|
|
|
<h3>Events</h3>
|
|
|
|
|
|
|
|
{{ template "events.html" . }}
|
|
|
|
|
|
|
|
<p>{{ json . }}</p>
|
2022-04-16 23:12:23 +03:00
|
|
|
{{- end }}
|