aboutsummaryrefslogtreecommitdiff
path: root/templates/page/custom_page.gohtml
blob: 5b4de00348f714dde7341f2f5bdba73a28caa784 (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="/tags">Tags</a>
            </nav>
        </div>
        {{ .GetContent }}
    </main>
{{end}}