├── .env.template ├── .gitignore ├── gatsby-config.js ├── gatsby-node.js ├── package.json ├── src ├── components │ ├── aspect-ratio-box.js │ ├── layout.js │ ├── logo.svg │ ├── next-project-heading.js │ ├── project-content.js │ └── project-header.js ├── pages │ └── index.js ├── style │ └── reset.css └── templates │ └── project.js └── yarn.lock /.env.template: -------------------------------------------------------------------------------- 1 | DATO_API_TOKEN="" -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrothenberg/gatsbygram/HEAD/.gitignore -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrothenberg/gatsbygram/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrothenberg/gatsbygram/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrothenberg/gatsbygram/HEAD/package.json -------------------------------------------------------------------------------- /src/components/aspect-ratio-box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrothenberg/gatsbygram/HEAD/src/components/aspect-ratio-box.js -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrothenberg/gatsbygram/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrothenberg/gatsbygram/HEAD/src/components/logo.svg -------------------------------------------------------------------------------- /src/components/next-project-heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrothenberg/gatsbygram/HEAD/src/components/next-project-heading.js -------------------------------------------------------------------------------- /src/components/project-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrothenberg/gatsbygram/HEAD/src/components/project-content.js -------------------------------------------------------------------------------- /src/components/project-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrothenberg/gatsbygram/HEAD/src/components/project-header.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrothenberg/gatsbygram/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/style/reset.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | -------------------------------------------------------------------------------- /src/templates/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrothenberg/gatsbygram/HEAD/src/templates/project.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrothenberg/gatsbygram/HEAD/yarn.lock --------------------------------------------------------------------------------