Gatsby Theme Cover Flow

moon indicating dark mode
sun indicating light mode

RSS Feed with Cover Flow

July 31, 2019

With little effort gatsby-theme-coverflow can make a coverflow for an RSS feed:

module.exports = {
plugins: [
{
resolve: `gatsby-source-rss-feed`,
options: {
url: `https://www.gatsbyjs.org/blog/rss.xml`,
name: `GatsbyBlog`,
},
},
{
resolve: "gatsby-theme-coverflow",
options: {
path: `rss-feed`,
query: `
{
allCoverPages: allFeedGatsbyBlog {
edges {
node {
title
link
}
}
}
}
`,
},
},
],
}