dorfylegends/backend/templates/eventTypes.html

11 lines
209 B
HTML
Raw Normal View History

2022-04-19 18:46:11 +03:00
{{template "layout.html" .}}
{{define "title"}}Historical Events{{end}}
{{define "content"}}
<ul>
{{- range $t := . }}
<li><a href="/events/{{ $t }}">{{ $t }}</a></li>
{{- end }}
</ul>
{{- end }}