Files
doc.rustdesk.com/layouts/partials/utils/page-description.html
rustdesk 1736869d5f seo/geo
2026-03-20 15:16:55 +08:00

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 -}}