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

single.html « _default « layouts - github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5bdc32eea70b9e7d04f5e5b35dfa8207898cdaee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{- define "title" }}{{ .Title }} | {{ .Site.Title }}{{ end -}}

{{- define "content" -}}
    <div class="page single special">
        {{- /* Title */ -}}
        <h1 class="single-title animated pulse faster">
            {{- .Title -}}
        </h1>

        {{- /* Content */ -}}
        <div class="content" id="content">
            {{- partial "single/content.html" .Content -}}
        </div>
    </div>
{{- end -}}