dorfylegends/backend/templates/entity.html

14 lines
233 B
HTML
Raw Normal View History

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>
2022-04-19 18:46:11 +03:00
{{ template "events.html" events . }}
2022-04-18 11:36:29 +03:00
<p>{{ json . }}</p>
2022-04-16 23:12:23 +03:00
{{- end }}