summaryrefslogtreecommitdiffstats
path: root/layouts/dramas/single.html
blob: e47e5314214bc7cc56348555a0c2757d556a7811 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ define "main" }}
<article class="drama" role="document"{{ with .Params.lang}} lang="{{ . }}"{{ end }}>
    <header>
        <h1 class="text-title">
            {{ .Params.caption | default .Title }}
        </h1>
    </header>

    <p class="byline">
        {{ partial "post-meta/author.html" . }}
    </p>

    {{ .Content }}
</article>
{{ end }}