├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── bsconfig.json ├── config ├── NextPreviousFragment.bs.js └── NextPreviousFragment.re ├── content ├── assets │ ├── gatsby-icon.png │ └── profile-pic.jpg └── blog │ ├── hello-world │ ├── index.md │ └── salty_egg.jpg │ ├── my-second-post │ └── index.md │ └── new-beginnings │ └── index.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.esm.js ├── gatsby-node.js ├── graphql_schema.json ├── package.json ├── src ├── bindings │ ├── gatsby-image │ │ ├── GatsbyImage.bs.js │ │ └── GatsbyImage.re │ └── react-helmet │ │ ├── Helmet.bs.js │ │ └── Helmet.re ├── components │ ├── Bio.bs.js │ ├── Bio.re │ ├── Layout.bs.js │ ├── Layout.re │ ├── SEO.bs.js │ └── SEO.re ├── pages │ ├── 404.js │ ├── index.bs.js │ └── index.re ├── templates │ ├── BlogPost.bs.js │ └── BlogPost.re └── utils │ ├── Typography.bs.js │ ├── Typography.re │ └── typography.js ├── static ├── favicon.ico └── robots.txt └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/README.md -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/bsconfig.json -------------------------------------------------------------------------------- /config/NextPreviousFragment.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/config/NextPreviousFragment.bs.js -------------------------------------------------------------------------------- /config/NextPreviousFragment.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/config/NextPreviousFragment.re -------------------------------------------------------------------------------- /content/assets/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/content/assets/gatsby-icon.png -------------------------------------------------------------------------------- /content/assets/profile-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/content/assets/profile-pic.jpg -------------------------------------------------------------------------------- /content/blog/hello-world/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/content/blog/hello-world/index.md -------------------------------------------------------------------------------- /content/blog/hello-world/salty_egg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/content/blog/hello-world/salty_egg.jpg -------------------------------------------------------------------------------- /content/blog/my-second-post/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/content/blog/my-second-post/index.md -------------------------------------------------------------------------------- /content/blog/new-beginnings/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/content/blog/new-beginnings/index.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/gatsby-node.esm.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /graphql_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/graphql_schema.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/package.json -------------------------------------------------------------------------------- /src/bindings/gatsby-image/GatsbyImage.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/bindings/gatsby-image/GatsbyImage.bs.js -------------------------------------------------------------------------------- /src/bindings/gatsby-image/GatsbyImage.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/bindings/gatsby-image/GatsbyImage.re -------------------------------------------------------------------------------- /src/bindings/react-helmet/Helmet.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/bindings/react-helmet/Helmet.bs.js -------------------------------------------------------------------------------- /src/bindings/react-helmet/Helmet.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/bindings/react-helmet/Helmet.re -------------------------------------------------------------------------------- /src/components/Bio.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/components/Bio.bs.js -------------------------------------------------------------------------------- /src/components/Bio.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/components/Bio.re -------------------------------------------------------------------------------- /src/components/Layout.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/components/Layout.bs.js -------------------------------------------------------------------------------- /src/components/Layout.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/components/Layout.re -------------------------------------------------------------------------------- /src/components/SEO.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/components/SEO.bs.js -------------------------------------------------------------------------------- /src/components/SEO.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/components/SEO.re -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/pages/index.bs.js -------------------------------------------------------------------------------- /src/pages/index.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/pages/index.re -------------------------------------------------------------------------------- /src/templates/BlogPost.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/templates/BlogPost.bs.js -------------------------------------------------------------------------------- /src/templates/BlogPost.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/templates/BlogPost.re -------------------------------------------------------------------------------- /src/utils/Typography.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/utils/Typography.bs.js -------------------------------------------------------------------------------- /src/utils/Typography.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/utils/Typography.re -------------------------------------------------------------------------------- /src/utils/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/src/utils/typography.js -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfrolich/reason-gatsby-starter-blog/HEAD/yarn.lock --------------------------------------------------------------------------------