Hugo Linen
Theme Guide

RSS feed

Hugo Linen uses Hugo’s RSS output and adds a themed XSL stylesheet for a more readable browser view.

Enable RSS output in the site configuration:

hugo.toml
[outputs]  home = ["HTML", "RSS"]  section = ["HTML", "RSS"]  taxonomy = ["HTML", "RSS"]  term = ["HTML", "RSS"]

Then configure the feed metadata:

hugo.toml
[params.feed]  path = "/index.xml"  limit = 10  icon = "/linen-theme/favicon.svg"

The feed link in the header uses params.feed.path, so it can point to Hugo’s default /index.xml or to a custom output filename.

Hugo Linen uses Hugo's RSS output and adds a themed XSL stylesheet for a more readable browser view.Enable RSS output in the site configuration:```toml {title="hugo.toml"}[outputs]  home = ["HTML", "RSS"]  section = ["HTML", "RSS"]  taxonomy = ["HTML", "RSS"]  term = ["HTML", "RSS"]```Then configure the feed metadata:```toml {title="hugo.toml"}[params.feed]  path = "/index.xml"  limit = 10  icon = "/linen-theme/favicon.svg"```The feed link in the header uses `params.feed.path`, so it can point to Hugo's default `/index.xml` or to a custom output filename.