dorfylegends/backend/templates/events.html

11 lines
310 B
HTML
Raw Normal View History

2022-04-26 18:39:24 +03:00
Eventss
{{ json .Context }}
2022-04-16 23:12:23 +03:00
<ul>
2022-04-26 18:39:24 +03:00
{{- range $event := .Data.Events }}
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-23 22:38:03 +03:00
html ($event.Details.Html $.Context) }} {{ json $event.Details }}
2022-04-16 23:12:23 +03:00
</li>
{{- end}}
</ul>