https://github.com/wangonya/the-plain-gatsby
A minimalist GatsbyJs starter for your personal blog.
https://github.com/wangonya/the-plain-gatsby
Last synced: 2 months ago
JSON representation
A minimalist GatsbyJs starter for your personal blog.
- Host: GitHub
- URL: https://github.com/wangonya/the-plain-gatsby
- Owner: wangonya
- License: mit
- Created: 2019-05-25T12:43:28.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-11T22:21:54.000Z (over 2 years ago)
- Last Synced: 2025-03-31T21:51:28.903Z (4 months ago)
- Language: JavaScript
- Homepage: https://the-plain-gatsby.netlify.com/
- Size: 1.42 MB
- Stars: 26
- Watchers: 0
- Forks: 11
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
The Plain GatsbyA minimalist Gatsby starter for your blog. [Demo](https://the-plain-gatsby.netlify.com/).
Inspired by [Heiswayi Nrird](https://github.com/heiswayi)'s [the-plain](https://github.com/heiswayi/the-plain).



## Quick Start 🚀
1. **Create a Gatsby site.**
Use the Gatsby CLI to create a new site, specifying the default starter.
```sh
# create a new Gatsby site using the-plain-gatsby starter
gatsby new my-blog https://github.com/wangonya/the-plain-gatsby
```2. **Start developing.**
Navigate into your new site’s directory and start it up.
```sh
cd my-blog/
gatsby develop
```3. **Open the source code and start editing!**
Your site is now running at `http://localhost:8000`!
_Note: You'll also see a second link: _`http://localhost:8000/___graphql`_. This is a tool you can use to experiment with querying your data. Learn more about using this tool in the [Gatsby tutorial](https://www.gatsbyjs.org/tutorial/part-five/#introducing-graphiql)._
Open the `my-blog` directory in your code editor of choice and edit `src/pages/about.md`. Save your changes and the browser will update in real time!
Edit `gatsby.config.js` to update site metadata.
Add blog posts in markdown in `src/pages/blog/`. Each blog should have a `title` and `date` frontmatter. Example blog posts have been provided.