Have a blogging support system that aims to be as simple as Jeykll, but with the underlying power of Gatsby.
There is a high-level goal of supporting all of the features that have been built into the Artsy blog over the last 7 years incrementally.
This repo serves as the example blog for development of the system. Once gatsby-themes becomes stable then it can be turned into a theme instead.
These are the goals, not where it is at today:
- TypeScript support
- Archived pages
- Author pages - mine
- Category pages - GraphQL
- Site series - React Native at Artsy
- Multi-author posts - Pair Programming
- GitHub Issue Powered Comments
- Real-time search on the static pages
- Static stand-alone Pages - Artsy x React Native
You as a user would have a blog with a blog
folder, in that folder you could have:
$ tree blog
[...] # Your gatsby stuff
content/
├── assets
│ ├── gatsby-icon.png
│ └── profile-pic.jpg
├── blog
│ ├── archives
│ │ ├── 2011-12-25-creating-rebase.md
│ │ ├── 2011-12-26-the-godaddy-kerfuffle.md
│ │ └── 2011-12-27-barriers-of-entry-to-photography.md
│ ├── my-first-post
│ │ ├── index.mdx
│ │ └── hello-world.jpg
│ └── my-second-post
│ └── index.mdx
│
└── pages
└── cool-lib
└── index.mdx
Should generate the following resources:
/assets/gatsby-icon.png
/assets/profile-pic.jpg
/blog/creating-rebase/index.html
/blog/the-godaddy-kerfuffle/index.html
/blog/barriers-of-entry-to-photography/index.html
/blog/my-first-post/index.html
/blog/my-first-post/hello-world.jpg
/blog/my-second-post/index.html
/cool-lib/index.html
Right now we have the above TODO list. You can clone this repo, run yarn install
and start trying to build out some
of the features in that list into the main site. We can figure out how to transform it into a theme once themes are
more stable.
git clone https://github.com/and-hyde gatsby-and-hyde
cd gatsby-and-hyde
cd example
yarn install
yarn start