dorfylegends/backend/templates/artform.html

14 lines
247 B
HTML
Raw Normal View History

2022-05-03 22:39:00 +03:00
{{template "layout.html" .}}
{{define "title"}}{{ title .Name }}{{end}}
{{define "content"}}
<h1>{{ title .Name }}</h1>
<p>{{ description .Description }}</p>
<h3>Events</h3>
{{ template "events.html" events . }}
<p>{{ json . }}</p>
{{- end }}