├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── gatsby-config.js ├── gatsby-node.js ├── package.json ├── src ├── components │ ├── Bio.js │ ├── avatar.png │ └── layout.js ├── pages │ ├── 404.js │ └── index.js ├── templates │ └── blog-post.js └── utils │ └── typography.js └── static ├── cosmicjs.svg ├── favicon.ico ├── gatsby.png ├── robots.txt └── thumbnail.png /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Bio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/src/components/Bio.js -------------------------------------------------------------------------------- /src/components/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/src/components/avatar.png -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/templates/blog-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/src/templates/blog-post.js -------------------------------------------------------------------------------- /src/utils/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/src/utils/typography.js -------------------------------------------------------------------------------- /static/cosmicjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/static/cosmicjs.svg -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/gatsby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/static/gatsby.png -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /static/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmicjs/gatsby-blog-cosmicjs/HEAD/static/thumbnail.png --------------------------------------------------------------------------------