How do you combine several RSS feeds?
I have RSS feeds for some sections. I’d like to these feeds to create a master RSS feed for the homepage. In layout, I have: _default baseof.xml products rss.xml notes rss.xml games newspapers rss.xml...
View ArticleHow do you combine several RSS feeds?
The default template is referenced in the docs at https://gohugo.io/templates/rss/. Modify {{ range .Pages }} to reference the sections you want; it is very customizable. Read full topic
View ArticleHow do you combine several RSS feeds?
Thanks. I assumed as much, but was hoping there was a better way to do this as I’ve already done the logic for each RSS feed. If it helps anyone, here’s part of my code: {{define "main"}} {{range...
View ArticleHow do you combine several RSS feeds?
Sorry if I get this wrong, but what about {{range .RegularPages }} ? That will go through all your pages and create an RSS feed (if you replace it for the two range lines in your sample). That feed...
View Article