18 lines
406 B
HTML
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 }}
|