summaryrefslogtreecommitdiffstats
path: root/layouts/partials/description.html
blob: ff3b697bef9e45f44918c3913984e1a71b3e8663 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{- $description := "" -}}

{{- if .IsHome -}}
    {{- $description = site.Params.Description -}}
{{- else -}}
    {{- if and (.Params.Description) (ne .Params.Description "") -}}
        {{- $description = print .Params.Description -}}
    {{- else if and (.Params.Summary ) (ne .Params.Summary "") -}}
        {{- $description = print .Params.Summary -}}
    {{- else -}}
        {{- $description = print .Summary -}}
    {{- end -}}
{{- end -}}

{{- replaceRE "\n" " " ($description | plainify | safeHTML | chomp | truncate 180) -}}