now/templates/page/custom_page.gohtml
2024-12-10 19:19:41 +01:00

13 lines
332 B
Text

{{define "body"}}
<main class="custom-page" style="{{ .GetBackground }}">
<div class="header">
<h2>{{ .Title }}</h2>
<nav>
<a href="/">Home</a>
</nav>
</div>
{{ range $content := .Content }}
{{ .Get }}
{{ end }}
</main>
{{end}}