├── .eslintrc.js ├── .gitignore ├── .nvmrc ├── .prettierrc ├── LICENSE ├── README.md ├── content ├── assets │ └── gatsby-icon.png └── blog │ ├── best-software │ ├── index.md │ └── software.jpg │ ├── conference-on-javascript │ ├── index.md │ └── js-1.png │ ├── how-i-rest │ ├── i-rest.jpg │ ├── index.md │ └── we-in-rest.jpg │ ├── how-to-start-programming │ ├── how-to-start.jpg │ └── index.md │ ├── tips-to-improve-workflow │ ├── index.md │ ├── mac.jpg │ └── workflow.jpg │ └── welcome-to-gatsby │ ├── gatsby-astronaut.png │ ├── hello_world.zip │ └── index.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── package.json ├── src ├── components │ ├── layout.js │ ├── pic.jpg │ ├── seo.js │ └── sidebar.js ├── pages │ ├── 404.js │ └── tags.js ├── styles │ ├── _media.scss │ ├── _normalize.scss │ ├── _syntax.scss │ ├── _variables.scss │ ├── fonts │ │ └── font-awesome │ │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── main.scss │ └── parts │ │ ├── _home-page.scss │ │ ├── _post-page.scss │ │ └── _tag.scss └── templates │ ├── blog-list.js │ ├── blog-post.js │ └── tags.js └── static ├── favicon.ico ├── gatsby-icon.png ├── home-page.jpg ├── post-example.jpg ├── promo-img.jpg └── robots.txt /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.10.0 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/README.md -------------------------------------------------------------------------------- /content/assets/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/content/assets/gatsby-icon.png -------------------------------------------------------------------------------- /content/blog/best-software/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/content/blog/best-software/index.md -------------------------------------------------------------------------------- /content/blog/best-software/software.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/content/blog/best-software/software.jpg -------------------------------------------------------------------------------- /content/blog/conference-on-javascript/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/content/blog/conference-on-javascript/index.md -------------------------------------------------------------------------------- /content/blog/conference-on-javascript/js-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/content/blog/conference-on-javascript/js-1.png -------------------------------------------------------------------------------- /content/blog/how-i-rest/i-rest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/content/blog/how-i-rest/i-rest.jpg -------------------------------------------------------------------------------- /content/blog/how-i-rest/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/content/blog/how-i-rest/index.md -------------------------------------------------------------------------------- /content/blog/how-i-rest/we-in-rest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/content/blog/how-i-rest/we-in-rest.jpg -------------------------------------------------------------------------------- /content/blog/how-to-start-programming/how-to-start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/content/blog/how-to-start-programming/how-to-start.jpg -------------------------------------------------------------------------------- /content/blog/how-to-start-programming/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/content/blog/how-to-start-programming/index.md -------------------------------------------------------------------------------- /content/blog/tips-to-improve-workflow/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/content/blog/tips-to-improve-workflow/index.md -------------------------------------------------------------------------------- /content/blog/tips-to-improve-workflow/mac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/content/blog/tips-to-improve-workflow/mac.jpg -------------------------------------------------------------------------------- /content/blog/tips-to-improve-workflow/workflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/content/blog/tips-to-improve-workflow/workflow.jpg -------------------------------------------------------------------------------- /content/blog/welcome-to-gatsby/gatsby-astronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/content/blog/welcome-to-gatsby/gatsby-astronaut.png -------------------------------------------------------------------------------- /content/blog/welcome-to-gatsby/hello_world.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/content/blog/welcome-to-gatsby/hello_world.zip -------------------------------------------------------------------------------- /content/blog/welcome-to-gatsby/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/content/blog/welcome-to-gatsby/index.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/package.json -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/components/pic.jpg -------------------------------------------------------------------------------- /src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/components/seo.js -------------------------------------------------------------------------------- /src/components/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/components/sidebar.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/pages/tags.js -------------------------------------------------------------------------------- /src/styles/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/styles/_media.scss -------------------------------------------------------------------------------- /src/styles/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/styles/_normalize.scss -------------------------------------------------------------------------------- /src/styles/_syntax.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/styles/_syntax.scss -------------------------------------------------------------------------------- /src/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/styles/_variables.scss -------------------------------------------------------------------------------- /src/styles/fonts/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/styles/fonts/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /src/styles/fonts/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/styles/fonts/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /src/styles/fonts/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/styles/fonts/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/styles/fonts/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/styles/fonts/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/styles/fonts/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/styles/fonts/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/styles/fonts/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/styles/fonts/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/styles/fonts/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/styles/fonts/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/styles/fonts/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/styles/fonts/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /src/styles/parts/_home-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/styles/parts/_home-page.scss -------------------------------------------------------------------------------- /src/styles/parts/_post-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/styles/parts/_post-page.scss -------------------------------------------------------------------------------- /src/styles/parts/_tag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/styles/parts/_tag.scss -------------------------------------------------------------------------------- /src/templates/blog-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/templates/blog-list.js -------------------------------------------------------------------------------- /src/templates/blog-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/templates/blog-post.js -------------------------------------------------------------------------------- /src/templates/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/src/templates/tags.js -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/static/gatsby-icon.png -------------------------------------------------------------------------------- /static/home-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/static/home-page.jpg -------------------------------------------------------------------------------- /static/post-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/static/post-example.jpg -------------------------------------------------------------------------------- /static/promo-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangonya/flexible-gatsby/HEAD/static/promo-img.jpg -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | --------------------------------------------------------------------------------