2022-04-22 18:45:10 +03:00
|
|
|
{{template "layout.html" .}}
|
|
|
|
|
|
|
|
{{define "title"}}{{ title .Name }}{{end}}
|
|
|
|
|
|
|
|
{{define "content"}}
|
2022-04-29 15:21:27 +03:00
|
|
|
<h3>{{ title .Name }}</h3>
|
|
|
|
{{ .Type_ }}
|
2022-04-22 18:45:10 +03:00
|
|
|
|
2022-04-29 15:21:27 +03:00
|
|
|
<h5 class="mt-3">Events</h5>
|
2022-04-22 18:45:10 +03:00
|
|
|
{{ template "events.html" events . }}
|
|
|
|
|
|
|
|
<p>{{ json . }}</p>
|
|
|
|
{{- end }}
|