Welcome to mirror list, hosted at ThFree Co, Russian Federation.

single.html « post « layouts - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 787d83c16ae2a3518e4d2dac5231c32ef8342183 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "main" }}
    <div class="pl-sm-2">
        <div class="mb-3">
            <h3 class="mb-0">{{ .Title }}</h3>
            {{ if .Params.Subtitle }}
            <h5>{{ .Params.Subtitle }}</h5>
            {{ end }}
            <small class="text-muted">Published {{ .Date.Format "January 2, 2006"  }}</small>
        </div>

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

    {{ template "_internal/disqus.html" . }}
{{ end }}