aboutsummaryrefslogtreecommitdiff
path: root/templates/page/custom_page.gohtml
blob: 83a4983fe0fa853f388b0e5accf6e23f546561dd (plain)
1
2
3
4
5
6
7
8
9
10
11
{{define "body"}}
    <main class="custom-page" style="{{ .GetBackground }}">
        <div class="header">
            <h2>{{ .Title }}</h2>
            <nav>
                <a href="/">Home</a>
            </nav>
        </div>
        {{ .GetContent }}
    </main>
{{end}}