diff options
author | Joe Mooring <[email protected]> | 2024-03-23 13:39:44 -0700 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2024-03-30 18:32:58 +0100 |
commit | f0a26cf58e9bfbe55c091d51a4133bc22cad5d1f (patch) | |
tree | 0e7bfbb6a3cd0ba107ac5ef5bed644c4adc590b4 /tpl | |
parent | 74ce5dc84136467b563be6efa4246d29ad6127f7 (diff) | |
download | hugo-f0a26cf58e9bfbe55c091d51a4133bc22cad5d1f.tar.gz hugo-f0a26cf58e9bfbe55c091d51a4133bc22cad5d1f.zip |
tpl/tplimpl: Update RSS template
- Use publication date for pubdate
- Include version in generator element
Closes #3918
Closes #11692
Diffstat (limited to 'tpl')
-rw-r--r-- | tpl/tplimpl/embedded/templates/_default/rss.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tpl/tplimpl/embedded/templates/_default/rss.xml b/tpl/tplimpl/embedded/templates/_default/rss.xml index eb5ed7d48..a3cade657 100644 --- a/tpl/tplimpl/embedded/templates/_default/rss.xml +++ b/tpl/tplimpl/embedded/templates/_default/rss.xml @@ -48,7 +48,7 @@ <title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{ . }} on {{ end }}{{ .Site.Title }}{{ end }}</title> <link>{{ .Permalink }}</link> <description>Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{ . }} {{ end }}{{ end }}on {{ .Site.Title }}</description> - <generator>Hugo -- gohugo.io</generator> + <generator>Hugo {{ hugo.Version }}</generator> <language>{{ site.Language.LanguageCode }}</language>{{ with $authorEmail }} <managingEditor>{{.}}{{ with $authorName }} ({{ . }}){{ end }}</managingEditor>{{ end }}{{ with $authorEmail }} <webMaster>{{ . }}{{ with $authorName }} ({{ . }}){{ end }}</webMaster>{{ end }}{{ with .Site.Copyright }} @@ -61,7 +61,7 @@ <item> <title>{{ .Title }}</title> <link>{{ .Permalink }}</link> - <pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate> + <pubDate>{{ .PublishDate.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate> {{- with $authorEmail }}<author>{{ . }}{{ with $authorName }} ({{ . }}){{ end }}</author>{{ end }} <guid>{{ .Permalink }}</guid> <description>{{ .Summary | transform.XMLEscape | safeHTML }}</description> |