dorfylegends/backend/templates/region.html

13 lines
209 B
HTML
Raw Normal View History

2022-04-22 18:45:10 +03:00
{{template "layout.html" .}}
{{define "title"}}{{ title .Name }}{{end}}
{{define "content"}}
<h1>{{ title .Name }}</h1>
<h3>Events</h3>
{{ template "events.html" events . }}
<p>{{ json . }}</p>
{{- end }}