This commit is contained in:
rustdesk
2026-03-20 15:16:55 +08:00
parent b6655924d6
commit 1736869d5f
462 changed files with 1479 additions and 124 deletions

View File

@@ -0,0 +1,17 @@
{{- $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 -}}