summaryrefslogtreecommitdiffstats
path: root/layouts/partials/description.html
blob: e63c0d9c8a44634a9561accc262061ba5cd98896 (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 -}}

{{- $description | plainify | safeHTML | chomp | truncate 180 -}}