summaryrefslogtreecommitdiffstats
path: root/layouts/partials/page/single.html
blob: 50d96cc905f39c1030a549c5e6e99029f9bd3f75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "main" }}
<article class="{{ partial "post-class.html" . }}" role="document" id="page-{{ .File.TranslationBaseName | lower }}"{{ with .Params.lang}} lang="{{ . }}"{{ end }}>
    <header>
        <h1 class="page-title">
            {{ .Params.pageTitle | default .Title }}
        </h1>
    </header>

    <div class="page-body">
        {{ .Content }}
    </div>
</article>
{{ end }}