- PWA support.
- Mobile-First approach in development.
- Archive and tags.
- Pagination support.
- Blazing fast!
You can edit basic information by:
- Default image - You can change it by replacing default.jpg at src/images (keep the same name "default") - it applies when the blog post has no image provided.
- Navigation Title - You can edit by changing gatsby-config.js metadata title.
- Author
- Author name - You can edit by changing gatsby-config.js metadata.
- Author picture - You can change it by replacing author.jpg at src/images (keep the same name "author" or change on gatsby-config.js also).
- Socials - You can edit by changing gatsby-config.js metadata. If social option is "", it won't show anything, if has any text, will start to show at footer using that text as href link.
- Color Scheme - You can edit by changing gatsby-config.js.
Create a new site with Gatsby CLI, specifying the Sakha starter.
gatsby new my-blog https://github.com/tsaristbomba/gatsby-blog-sakha
Navigate into your new site’s directory and start the gatsby develop script.
cd blog
gatsby develop
Your site is now running at http://localhost:8000
!
Query your data at: http://localhost:8000/___graphql
.
Learn more about how to query Gatsby data at - Gatsby Tutorial.
Try on Netlify's quick deploy:
To test the CMS locally, you'll need run a production build of the site:
$ yarn build
$ gatsby serve
└── content
├── assets
└── blog
└── static
├── admin
└── src
├── components
│ ├── common
│ └── Scroll
├── images
├── pages
├── styles
├── templates
└── utils