├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── docs └── blog.png ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── src ├── components │ ├── bio.js │ ├── header.js │ ├── layout.js │ ├── post.js │ ├── seo.js │ └── share.js ├── content │ ├── hello-world │ │ └── index.md │ ├── here-another │ │ ├── index.md │ │ └── sandy-miller.jpg │ └── text-headings │ │ └── index.md ├── images │ ├── gatsby-icon.png │ ├── icon.png │ └── social │ │ └── twitter.svg ├── pages │ ├── 404.js │ └── index.js ├── templates │ ├── blog-post.js │ └── post-styles.js └── utils │ ├── media.js │ └── styled-link.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/README.md -------------------------------------------------------------------------------- /docs/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/docs/blog.png -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/package.json -------------------------------------------------------------------------------- /src/components/bio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/components/bio.js -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/components/header.js -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/components/post.js -------------------------------------------------------------------------------- /src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/components/seo.js -------------------------------------------------------------------------------- /src/components/share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/components/share.js -------------------------------------------------------------------------------- /src/content/hello-world/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/content/hello-world/index.md -------------------------------------------------------------------------------- /src/content/here-another/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/content/here-another/index.md -------------------------------------------------------------------------------- /src/content/here-another/sandy-miller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/content/here-another/sandy-miller.jpg -------------------------------------------------------------------------------- /src/content/text-headings/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/content/text-headings/index.md -------------------------------------------------------------------------------- /src/images/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/images/gatsby-icon.png -------------------------------------------------------------------------------- /src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/images/icon.png -------------------------------------------------------------------------------- /src/images/social/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/images/social/twitter.svg -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/templates/blog-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/templates/blog-post.js -------------------------------------------------------------------------------- /src/templates/post-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/templates/post-styles.js -------------------------------------------------------------------------------- /src/utils/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/utils/media.js -------------------------------------------------------------------------------- /src/utils/styled-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/src/utils/styled-link.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agneym/gatsby-blog-starter/HEAD/yarn.lock --------------------------------------------------------------------------------