I am trying to change the url to my RSS feed to be:
/news.rss
I’m using the following configuration:
outputs:
home: ["HTML","RSS"]
mediaTypes:
"application/rss":
suffix: "rss"
outputFormats:
RSS:
mediatype: "application/rss"
baseName: "news"
which does generate the /news.rss file - however, I cannot figure out where to place/name the template for this.
I have tried:
- layouts/index.xml
- layouts/news.rss
- layouts/index.news.rss
- layouts/news.xml
- layouts/index.rss
to no avail. If I comment out the config above, restoring RSS functionality to the defaults, then my template at:
layouts/rss.xml
works fine.
What am I missing?