Hugo で Section ごとに RSS を生成したい場合。
$ ls -l content/
drwxr-xr-x 2 mrtc0 mrtc0 4096 Aug 1 22:35 diary
drwxr-xr-x 2 mrtc0 mrtc0 4096 Jul 31 12:01 post
drwxr-xr-x 2 mrtc0 mrtc0 4096 Aug 1 22:51 scrap
config.toml に RSS を生成するように追記する。theme が勝手にやってくれていると見落としてしまいがち。
[outputs]
section = ["JSON", "HTML", "RSS"]
あとは Section ごとに rss.xml を用意する。
$ cat layouts/diary/rss.xml
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}</title>
<link>{{ .Permalink }}</link>
<description>Recent content {{ with .Title }}in {{.}} {{ end }}</description>
<generator>Hugo -- gohugo.io</generator>
{{ with .Site.LanguageCode }}
<language>{{.}}</language>
{{end}}
<managingEditor>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</managingEditor>
{{ if not .Date.IsZero }}
<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>
{{ end }}
<atom:link href="{{ .RelPermalink }}" rel="self" type="application/rss+xml" />
{{ range first 10 (where (where .Site.Pages ".Section" "diary") "Kind" "page") }}
<item>
<title>{{ .Title }}</title>
<link>{{ .Permalink }}</link>
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
<guid>{{ .Permalink }}</guid>
<description>{{ .Summary | html }}</description>
</item>
{{ end }}
</channel>
</rss>