dorfylegends/backend/templates/index.html
Robert Janetzko 52bffc322d polish
2022-05-10 07:51:04 +00:00

31 lines
554 B
HTML

{{template "layout.html" .}}
{{define "title"}}Legends Browser{{end}}
{{define "content"}}
<h3>Civilizations</h3>
<ul>
{{- range $race, $civs := .Civilizations }}
<li>{{ $race }}</li>
<ul>
{{- range $civs }}
<li>{{ entity .Id }}</li>
{{- end }}
</ul>
{{- end }}
</ul>
{{ if world.MapReady }}
<div id="map" style="height: 400px"></div>
{{initMap}}
{{- range $race, $civs := .Civilizations }}
{{- range $civs }}
{{- range .Sites }}
{{ addSite . true }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}