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

description.html « data « partials « layouts - github.com/CaiJimmy/hugo-theme-stack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f63d6032e8ed8cb899d6430b6ef27e373b5e20be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!-- Use site subtitle by default -->
{{ $description := .Site.Params.sidebar.subtitle }}

{{ if .Description }}
    <!-- Page description exists -->
    {{ $description = .Description }}
{{ else if .IsPage }}
    <!-- Use page summary -->
    {{ $description = .Summary }}
{{ end }}

{{ return ($description | plainify)}}