Community Plugin
View plugin on GitHubGatsby 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
-
Create a Gatsby site.
gatsby new cool-new-vlog
-
Change directory to the folder you just created and install the theme
cd cool-new-vlog
yarn add @lemonslicenebula/gatsby-theme-vlog
-
Add theme to your
gatsby-config.js
module.exports = { siteMetadata: { title: "My Countdown", author: "Rafael Quintanilha" }, plugins: [ `@lemonslicenebula/gatsby-theme-vlog`, ], }
-
Adding pages Create an
.mdx
file in your/src/pages/
directory. For example ```/src/pages/index.mdx to create the home page. -
Run
yarn develop
and go to http://localhost:8000