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

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