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