Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wangonya/the-plain-gatsby
A minimalist GatsbyJs starter for your personal blog.
https://github.com/wangonya/the-plain-gatsby
Last synced: about 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-11T22:21:54.000Z (about 2 years ago)
- Last Synced: 2024-11-11T22:35:31.816Z (2 months ago)
- Language: JavaScript
- Homepage: https://the-plain-gatsby.netlify.com/
- Size: 1.42 MB
- Stars: 25
- Watchers: 1
- 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).
![home-page-screenshot](https://i.postimg.cc/7YPxnrJM/Screenshot-2019-05-25-at-18-33-36.png)
![about-page-screenshot](https://i.postimg.cc/SK9qxyHq/Screenshot-2019-05-25-at-18-34-12.png)
![blog-page-screenshot](https://i.postimg.cc/CxzS9CNR/Screenshot-2019-05-25-at-18-34-00.png)
## 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.