YassineElouafi / example

An example blog for Gatsby and Hyde

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Example Blog for Gatsby & Hyde

Goal

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

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.

Features

These are the goals, not where it is at today:

Aim

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

How do I contribute?

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

About

An example blog for Gatsby and Hyde

License:MIT License


Languages

Language:JavaScript 100.0%