dorfylegends/backend/templates/mountain.html
Robert Janetzko cc7dfe584a more details
2022-05-06 14:17:50 +00:00

17 lines
384 B
HTML

{{template "layout.html" .}}
{{define "title"}}{{ title .Name }}{{end}}
{{define "content"}}
<h3>{{ title .Name }}</h3>
<p>{{ if .IsVolcano }}volcano{{else}}mountain{{end}}</p>
<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 }}