├── .babelrc ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── gatsby-config.js ├── gatsby-node.js ├── package.json ├── src ├── assets │ └── images │ │ ├── about.jpg │ │ └── duck_avatar.jpeg ├── components │ ├── Buttons │ │ └── index.js │ ├── Footer │ │ ├── __snapshots__ │ │ │ └── footer.test.js.snap │ │ ├── footer.test.js │ │ └── index.js │ ├── Layout │ │ └── index.js │ ├── Misc │ │ └── index.js │ └── Navigation │ │ ├── index.js │ │ └── mobile.js ├── data │ ├── authors.yaml │ └── content.json ├── layouts │ └── index.js ├── pages │ ├── about.js │ ├── blog │ │ ├── example-post-1 │ │ │ └── index.md │ │ ├── example-post-2 │ │ │ └── index.md │ │ ├── example-post-3 │ │ │ └── index.md │ │ ├── index.js │ │ └── post.sh │ ├── index.js │ ├── privacy.js │ └── terms.js ├── templates │ └── blog-post-template.js └── utils │ ├── enzyme.js │ ├── feather.js │ ├── media.js │ └── typography.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .cache/ 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/images/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/assets/images/about.jpg -------------------------------------------------------------------------------- /src/assets/images/duck_avatar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/assets/images/duck_avatar.jpeg -------------------------------------------------------------------------------- /src/components/Buttons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/components/Buttons/index.js -------------------------------------------------------------------------------- /src/components/Footer/__snapshots__/footer.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/components/Footer/__snapshots__/footer.test.js.snap -------------------------------------------------------------------------------- /src/components/Footer/footer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/components/Footer/footer.test.js -------------------------------------------------------------------------------- /src/components/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/components/Footer/index.js -------------------------------------------------------------------------------- /src/components/Layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/components/Layout/index.js -------------------------------------------------------------------------------- /src/components/Misc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/components/Misc/index.js -------------------------------------------------------------------------------- /src/components/Navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/components/Navigation/index.js -------------------------------------------------------------------------------- /src/components/Navigation/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/components/Navigation/mobile.js -------------------------------------------------------------------------------- /src/data/authors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/data/authors.yaml -------------------------------------------------------------------------------- /src/data/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/data/content.json -------------------------------------------------------------------------------- /src/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/layouts/index.js -------------------------------------------------------------------------------- /src/pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/pages/about.js -------------------------------------------------------------------------------- /src/pages/blog/example-post-1/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/pages/blog/example-post-1/index.md -------------------------------------------------------------------------------- /src/pages/blog/example-post-2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/pages/blog/example-post-2/index.md -------------------------------------------------------------------------------- /src/pages/blog/example-post-3/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/pages/blog/example-post-3/index.md -------------------------------------------------------------------------------- /src/pages/blog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/pages/blog/index.js -------------------------------------------------------------------------------- /src/pages/blog/post.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/pages/blog/post.sh -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/privacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/pages/privacy.js -------------------------------------------------------------------------------- /src/pages/terms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/pages/terms.js -------------------------------------------------------------------------------- /src/templates/blog-post-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/templates/blog-post-template.js -------------------------------------------------------------------------------- /src/utils/enzyme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/utils/enzyme.js -------------------------------------------------------------------------------- /src/utils/feather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/utils/feather.js -------------------------------------------------------------------------------- /src/utils/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/utils/media.js -------------------------------------------------------------------------------- /src/utils/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/src/utils/typography.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airtable/airtable-gatsbyjs-blog/HEAD/yarn.lock --------------------------------------------------------------------------------