├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── blog ├── 2019 │ ├── 7 │ │ ├── Firebaseでbasic認証をかける方法 │ │ │ └── index.md │ │ └── GatsbyJS + Contentful + Netlifyでブログ作ってみた │ │ │ ├── index.md │ │ │ └── screenshot.png │ ├── 8 │ │ ├── Sass(SCSS)の関数をstyled-componentsでも使いたい │ │ │ └── index.md │ │ └── 【styled-components】keyframesにpropsを渡す方法 │ │ │ └── index.md │ ├── 9 │ │ └── Gatsby.js + Markdownでブログを作り直しました │ │ │ └── index.md │ └── 10 │ │ ├── Gatsbyブログ用にサイト内検索を自作する │ │ └── index.md │ │ └── VSCodeのMarketplaceに自作拡張機能を公開する方法 │ │ ├── index.md │ │ ├── preview.png │ │ └── screenshot.png └── 2020 │ └── 11 │ └── Commitizenのプレフィックスを絵文字に変更してコミットメッセージを可愛くする │ ├── Commitizenのプレフィックスを絵文字に変更してコミットメッセージを可愛くする.md │ └── screenshot.png ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-related-post.js ├── package.json ├── src ├── components │ ├── blog │ │ └── index.js │ ├── footer │ │ └── index.js │ ├── header │ │ ├── index.js │ │ └── style.js │ ├── image │ │ └── index.js │ ├── layout │ │ ├── index.js │ │ └── style.js │ ├── modules │ │ └── index.js │ ├── paging-single │ │ └── index.js │ ├── polygon │ │ └── index.js │ ├── queries │ │ └── index.js │ ├── related │ │ ├── index.js │ │ └── style.js │ ├── search │ │ ├── highlight.js │ │ ├── index.js │ │ └── style.js │ ├── seo │ │ └── index.js │ ├── share │ │ ├── button.js │ │ └── index.js │ └── toc │ │ └── index.js ├── images │ ├── feedly.png │ ├── poly-black.png │ └── tony.jpg ├── pages │ ├── 404.js │ └── index.js ├── style │ ├── GlobalStyle.js │ ├── prism-original.css │ └── reset.css └── templates │ ├── blog-post │ ├── index.js │ └── style.js │ └── tag-page │ ├── index.js │ └── style.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/README.md -------------------------------------------------------------------------------- /blog/2019/10/Gatsbyブログ用にサイト内検索を自作する/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/blog/2019/10/Gatsbyブログ用にサイト内検索を自作する/index.md -------------------------------------------------------------------------------- /blog/2019/10/VSCodeのMarketplaceに自作拡張機能を公開する方法/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/blog/2019/10/VSCodeのMarketplaceに自作拡張機能を公開する方法/index.md -------------------------------------------------------------------------------- /blog/2019/10/VSCodeのMarketplaceに自作拡張機能を公開する方法/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/blog/2019/10/VSCodeのMarketplaceに自作拡張機能を公開する方法/preview.png -------------------------------------------------------------------------------- /blog/2019/10/VSCodeのMarketplaceに自作拡張機能を公開する方法/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/blog/2019/10/VSCodeのMarketplaceに自作拡張機能を公開する方法/screenshot.png -------------------------------------------------------------------------------- /blog/2019/7/Firebaseでbasic認証をかける方法/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/blog/2019/7/Firebaseでbasic認証をかける方法/index.md -------------------------------------------------------------------------------- /blog/2019/7/GatsbyJS + Contentful + Netlifyでブログ作ってみた/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/blog/2019/7/GatsbyJS + Contentful + Netlifyでブログ作ってみた/index.md -------------------------------------------------------------------------------- /blog/2019/7/GatsbyJS + Contentful + Netlifyでブログ作ってみた/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/blog/2019/7/GatsbyJS + Contentful + Netlifyでブログ作ってみた/screenshot.png -------------------------------------------------------------------------------- /blog/2019/8/Sass(SCSS)の関数をstyled-componentsでも使いたい/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/blog/2019/8/Sass(SCSS)の関数をstyled-componentsでも使いたい/index.md -------------------------------------------------------------------------------- /blog/2019/8/【styled-components】keyframesにpropsを渡す方法/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/blog/2019/8/【styled-components】keyframesにpropsを渡す方法/index.md -------------------------------------------------------------------------------- /blog/2019/9/Gatsby.js + Markdownでブログを作り直しました/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/blog/2019/9/Gatsby.js + Markdownでブログを作り直しました/index.md -------------------------------------------------------------------------------- /blog/2020/11/Commitizenのプレフィックスを絵文字に変更してコミットメッセージを可愛くする/Commitizenのプレフィックスを絵文字に変更してコミットメッセージを可愛くする.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/blog/2020/11/Commitizenのプレフィックスを絵文字に変更してコミットメッセージを可愛くする/Commitizenのプレフィックスを絵文字に変更してコミットメッセージを可愛くする.md -------------------------------------------------------------------------------- /blog/2020/11/Commitizenのプレフィックスを絵文字に変更してコミットメッセージを可愛くする/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/blog/2020/11/Commitizenのプレフィックスを絵文字に変更してコミットメッセージを可愛くする/screenshot.png -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-related-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/gatsby-related-post.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/package.json -------------------------------------------------------------------------------- /src/components/blog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/blog/index.js -------------------------------------------------------------------------------- /src/components/footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/footer/index.js -------------------------------------------------------------------------------- /src/components/header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/header/index.js -------------------------------------------------------------------------------- /src/components/header/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/header/style.js -------------------------------------------------------------------------------- /src/components/image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/image/index.js -------------------------------------------------------------------------------- /src/components/layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/layout/index.js -------------------------------------------------------------------------------- /src/components/layout/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/layout/style.js -------------------------------------------------------------------------------- /src/components/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/modules/index.js -------------------------------------------------------------------------------- /src/components/paging-single/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/paging-single/index.js -------------------------------------------------------------------------------- /src/components/polygon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/polygon/index.js -------------------------------------------------------------------------------- /src/components/queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/queries/index.js -------------------------------------------------------------------------------- /src/components/related/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/related/index.js -------------------------------------------------------------------------------- /src/components/related/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/related/style.js -------------------------------------------------------------------------------- /src/components/search/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/search/highlight.js -------------------------------------------------------------------------------- /src/components/search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/search/index.js -------------------------------------------------------------------------------- /src/components/search/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/search/style.js -------------------------------------------------------------------------------- /src/components/seo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/seo/index.js -------------------------------------------------------------------------------- /src/components/share/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/share/button.js -------------------------------------------------------------------------------- /src/components/share/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/share/index.js -------------------------------------------------------------------------------- /src/components/toc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/components/toc/index.js -------------------------------------------------------------------------------- /src/images/feedly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/images/feedly.png -------------------------------------------------------------------------------- /src/images/poly-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/images/poly-black.png -------------------------------------------------------------------------------- /src/images/tony.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/images/tony.jpg -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/style/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/style/GlobalStyle.js -------------------------------------------------------------------------------- /src/style/prism-original.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/style/prism-original.css -------------------------------------------------------------------------------- /src/style/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/style/reset.css -------------------------------------------------------------------------------- /src/templates/blog-post/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/templates/blog-post/index.js -------------------------------------------------------------------------------- /src/templates/blog-post/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/templates/blog-post/style.js -------------------------------------------------------------------------------- /src/templates/tag-page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/templates/tag-page/index.js -------------------------------------------------------------------------------- /src/templates/tag-page/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/src/templates/tag-page/style.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diff001a/diff001a-gatsby-blog/HEAD/yarn.lock --------------------------------------------------------------------------------