rss: Fix feed to show text and images

This commit is contained in:
Jan Kremer 2026-01-14 09:52:57 +01:00
parent d264f49233
commit c657d62fbd
No known key found for this signature in database
3 changed files with 36 additions and 7 deletions

View file

@ -1,15 +1,40 @@
{{- $u := urls.Parse .Destination -}}
{{- $src := $u.String -}}
{{- if not $u.IsAbs -}}
{{- $path := strings.TrimPrefix "./" $u.Path -}}
{{- with or (.PageInner.Resources.Get $path) (resources.Get $path) -}}
{{- $src = .RelPermalink -}}
{{- with $u.RawQuery -}}
{{- $src = printf "%s?%s" $src . -}}
{{- end -}}
{{- with $u.Fragment -}}
{{- $src = printf "%s#%s" $src . -}}
{{- end -}}
{{- end -}}
{{- end -}}
{{- if .IsBlock -}}
<figure>
<img
src="{{ .Destination | safeURL }}"
src="{{ $src }}"
{{- with .PlainText }}alt="{{ . }}"{{ end -}}
{{- range $k, $v := .Attributes -}}
{{- if $v -}}
{{- printf " %s=%q" $k ($v | transform.HTMLEscape) | safeHTMLAttr -}}
{{- end -}}
{{- end -}}
/>
{{- with .Title }}<figcaption>{{ . }}</figcaption>{{ end -}}
</figure>
{{- else -}}
<img
src="{{ .Destination | safeURL }}"
{{- with .PlainText }}alt="{{ . }}"{{ end -}}
{{- with .Title }}title="{{ . }}"{{ end -}}
src="{{ $src }}"
alt="{{ .PlainText }}"
{{- with .Title }}title="{{ . }}"{{- end -}}
{{- range $k, $v := .Attributes -}}
{{- if $v -}}
{{- printf " %s=%q" $k ($v | transform.HTMLEscape) | safeHTMLAttr -}}
{{- end -}}
{{- end -}}
/>
{{- end -}}
{{- /**/ -}}