Files
kontor/go/templates/kontor/index.html
T
2025-04-29 12:52:55 +02:00

18 lines
406 B
HTML

<!--index.html-->
{{ define "kontor/index.html" }}
<!--Embed the header.html template at this location-->
{{ template "header.html" .}}
<!--Embed the menu.html template at this location-->
{{ template "menu.html" . }}
<div>
{{ if .InfoMessage}}
<p class="bg-info">{{.InfoMessage}}</p>
{{end}}
</div>
<!--Embed the footer.html template at this location-->
{{ template "footer.html" .}}
{{ end }}