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: fbddc26329d73a6fa10aee45a398beb71857d8dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ 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>
{{ end }}