1.0.0 • Published 5 years ago

gatsby-theme-slideshow v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

Gatsby Slideshow Theme

This is an extremely simple, extensible theme for making slideshows with Gatsby.

See the live demo

Installation

To use this theme in your Gatsby sites, follow these instructions:

  1. Install the theme

    npm install --save gatsby-theme-slideshow
  2. Add the theme to your gatsby-config.js with a path to your mdx slide files:

    module.exports = {
      plugins: [
        {
          resolve: "gatsby-theme-slideshow",
          options: {
            contentPath: "slides"
          }
        },
      ]
    }
  3. Add some slides to the directory path you defined in the previous step. Make sure you add the slug and order properties to your frontmatter.

  4. Start your site

    gatsby develop