1.0.0 • Published 5 years ago

@lemonslicenebula/gatsby-theme-vlog v1.0.0

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

Gatsby Theme Vlog

Create a vlog and with this simple and customizable Gatsby Theme.

It includes:

  • MDX support
  • a demo site (located in demo/) that installs the theme
  • Option to style with Theme UI

Usage

  1. Create a Gatsby site. gatsby new cool-new-vlog

  2. Change directory to the folder you just created and install the theme cd cool-new-vlog yarn add @lemonslicenebula/gatsby-theme-vlog

  3. Add theme to your gatsby-config.js

    module.exports = {
    siteMetadata: {
        title: "My Countdown",
        author: "Rafael Quintanilha"
     },
    plugins: [
     `@lemonslicenebula/gatsby-theme-vlog`,
    ],
    }
  4. Adding pages Create an .mdx file in your /src/pages/ directory. For example `/src/pages/index.mdx to create the home page.

  5. Run yarn develop and go to http://localhost:8000