diff options
Diffstat (limited to 'themes/hugo-theme-stack/layouts/partials/data/description.html')
-rw-r--r-- | themes/hugo-theme-stack/layouts/partials/data/description.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/themes/hugo-theme-stack/layouts/partials/data/description.html b/themes/hugo-theme-stack/layouts/partials/data/description.html new file mode 100644 index 0000000..7f6cc32 --- /dev/null +++ b/themes/hugo-theme-stack/layouts/partials/data/description.html @@ -0,0 +1,17 @@ +<!-- Use site subtitle by default --> +{{ $description := .Site.Params.sidebar.subtitle }} + +<!-- Seprate description exists --> +{{ if .Site.Params.description }} + {{ $description = .Site.Params.description }} +{{ end }} + +{{ if .Description }} + <!-- Page description exists --> + {{ $description = .Description }} +{{ else if .IsPage }} + <!-- Use page summary --> + {{ $description = .Summary }} +{{ end }} + +{{ return (replaceRE "\n" " " $description | plainify) }}
\ No newline at end of file |