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