dorfylegends/backend/templates/mountain.html
Robert Janetzko 41d54dd5f3 detail maps
2022-05-08 07:35:57 +00:00

23 lines
518 B
HTML

{{template "layout.html" .}}
{{define "title"}}{{ title .Name }}{{end}}
{{define "content"}}
<h3>{{ title .Name }}</h3>
<p>{{ if .IsVolcano }}volcano{{else}}mountain{{end}}</p>
<div class="object-map">
<div id="map" style="width: 300px; height: 300px"></div>
</div>
{{initMap}}
{{ addMountain .Id false }}
<dl class="row">
<dt class="col-2 col-lg-1">Height</dt>
<dd class="col-10 col-lg-11">{{ .Height }}</dd>
</dl>
<h5>Events</h5>
{{ template "events.html" events . }} <p>{{ json . }}</p>
{{- end }}