mirror of
https://github.com/rustdesk/doc.rustdesk.com.git
synced 2026-04-03 14:26:17 +00:00
18 lines
503 B
HTML
18 lines
503 B
HTML
{{- $description := "" -}}
|
|
{{- with .Description | plainify | htmlUnescape -}}
|
|
{{- $description = . | chomp -}}
|
|
{{- end -}}
|
|
{{- if $description -}}
|
|
{{- $description -}}
|
|
{{- else -}}
|
|
{{- if .IsHome -}}
|
|
{{- with .Site.Params.description | plainify | htmlUnescape -}}
|
|
{{ . | chomp -}}
|
|
{{- end -}}
|
|
{{- else if .IsSection -}}
|
|
{{- partial "utils/section-description-fallback.html" . -}}
|
|
{{- else -}}
|
|
{{- .Summary | plainify | htmlUnescape | chomp -}}
|
|
{{- end -}}
|
|
{{- end -}}
|