dorfylegends/backend/templates/index.html

31 lines
623 B
HTML
Raw Normal View History

2022-05-01 10:32:14 +03:00
{{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>
2022-05-01 10:49:08 +03:00
<div id="map" style="height: 400px"></div>
<script>
var map = L.map('map').setView([5, 5], 13);
var imageUrl = '$suburi/map'
var imageBounds = [[0, 0],
[10, 10]];
var imageLayer = L.imageOverlay(imageUrl, imageBounds, { opacity: 0.5 });
imageLayer.addTo(map);
</script>
2022-05-01 10:32:14 +03:00
{{- end }}