- Lost Grid.
- Modern font stack.
- Beautiful typography inspired by matejlatin/Gutenberg.
- Syntax highlighting in code blocks using PrismJS.
- Mobile-First approach in development.
- Archive organized by tags and categories.
- Pagination support.
- Netlify CMS support.
- Google Analytics.
- Disqus Comments.
- Flow static type checking.
Navigate into your new site’s directory and start it up.
cd blog
gatsby develop
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.
Open the blog
directory in your code editor of choice and edit src/templates/index-template.js
. Save your changes and the browser will update in real time!
└── content
├── pages
└── posts
└── static
├── admin
└── media
└── src
├── assets
│ └── scss
│ ├── base
│ └── mixins
├── cms
│ └── preview-templates
├── components
│ ├── Feed
│ ├── Icon
│ ├── Layout
│ ├── Page
│ ├── Pagination
│ ├── Post
│ │ ├── Author
│ │ ├── Comments
│ │ ├── Content
│ │ ├── Meta
│ │ └── Tags
│ └── Sidebar
│ ├── Author
│ ├── Contacts
│ ├── Copyright
│ └── Menu
├── constants
├── templates
└── utils