Skip to content

vorsakha/gatsby-blog-sakha

Repository files navigation

Gatsby

Sakha Blog Starter

✅Technology Stack

✅Features

  • Pagination support.
  • Blazing fast!

✅Quick edit

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.

✅Quick Start

✔️Create a Gatsby site

Create a new site with Gatsby CLI, specifying the Sakha starter.

gatsby new my-blog https://github.com/tsaristbomba/gatsby-blog-sakha

✔️Start Developing

Navigate into your new site’s directory and start the gatsby develop script.

cd blog
gatsby develop

✔️Open the source code and start editing!

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.

✅Deploy with Netlify

Try on Netlify's quick deploy:

Deploy to Netlify

✔️NetlifyCMS Locally

To test the CMS locally, you'll need run a production build of the site:

$ yarn build
$ gatsby serve

✅Folder Structure

└── content
    ├── assets
    └── blog
└── static
    ├── admin
└── src
    ├── components
    │   ├── common
    │   └── Scroll
    ├── images
    ├── pages
    ├── styles
    ├── templates
    └── utils