Want to contribute? Fork me on Codeberg.org!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
697 B

<!DOCTYPE html>
<html lang="en">
{{ block "head" . }}
{{ partial "head.html" . }}
{{ end }}
<body>
<img id="mascot" src="/mascot.svg">
<div id="content">
<div>
{{ block "primary" . }}
<div class="content">
{{ block "main" . }}{{ end }}
</div>
{{ end }}
{{ block "mainFooter" . }}
{{ partial "footer.html" (partial "footers/main.html" .) }}
{{ end }}
</div>
<div>
<div class="content">
{{ block "secondary" . }}
{{ .Scratch.Get "secondary" }}
{{ end }}
</div>
{{ block "secondaryFooter" . }}
{{ partial "footer.html" (partial "footers/main.html" .) }}
{{ end }}
</div>
</div>
</body>
</html>