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

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

    <div class="post-body">
        {{ .Content }}
    </div>

    <div class="post-tags-wrapper">
        {{ partial "post-tags.html" . }}
    </div>
</article>
{{ end }}