dorfylegends/backend/templates/events.html

8 lines
258 B
HTML
Raw Normal View History

2022-04-16 23:12:23 +03:00
<ul>
2022-04-19 18:46:11 +03:00
{{- range $event := . }}
2022-04-16 23:12:23 +03:00
<li>
2022-04-22 10:39:15 +03:00
[{{ $event.Id }}] In {{ if gt $event.Seconds72 -1 }}{{ season $event.Seconds72 }} of {{ end }}{{ $event.Year }}, {{
2022-04-19 12:46:43 +03:00
html $event.Details.Html }} {{ json $event.Details }}
2022-04-16 23:12:23 +03:00
</li>
{{- end}}
</ul>