aboutsummaryrefslogtreecommitdiff
path: root/templates/page/custom_page.gohtml
blob: 4cb80785bca7494ee75e3807eae231c4ee8b929d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{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}}