mirror of https://github.com/lxndrblz/anatole.git

Alexander Bilz
03.44.2025 1c6273e5c61c9a9e3d2aeb95317acea30f41e13d
fix: broken rss feed (#535)

1 files modified
4 ■■■■ changed files
layouts/_default/rss.xml 4 ●●●● patch | view | raw | blame | history
layouts/_default/rss.xml
@@ -33,11 +33,11 @@
      {{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
      <guid>{{ .Permalink }}</guid>
      {{ if eq .Site.Params.rssFullContent true }}
        <description>{{ .Content | safeHTML }}</description>
        <description>{{ .Content | html }}</description>
      {{ else if .Description }}
        <description>{{ .Description }}</description>
      {{ else }}
        <description>{{ .Summary | safeHTML }}</description>
        <description>{{ .Summary | html }}</description>
      {{ end }}
    </item>
    {{ end }}