├── .babelrc ├── .eslintrc.json ├── .gitignore ├── .markdownlintrc ├── .prettierrc ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── BEST_PRACTICES.md ├── CODE_OF_CONDUCT.md ├── FAQs.md ├── FCC_WORKFLOW.md ├── FORK_AND_PULL.md ├── INSTALLATION.md ├── REQUIREMENTS.md ├── SETTING_UP.md ├── WHAT_TO_CONTRIBUTE.md └── WHY_CONTRIBUTE.md ├── gatsby-config.js ├── gatsby-node.js ├── package.json ├── src ├── components │ ├── Bio.js │ └── fcc-logo.png ├── layouts │ └── index.js ├── pages │ ├── 404.js │ ├── hello-world │ │ ├── index.md │ │ └── salty_egg.jpg │ ├── hi-folks │ │ └── index.md │ ├── index.js │ └── my-second-post │ │ └── index.md ├── templates │ └── blog-post.js └── utils │ └── typography.js └── static ├── favicon.ico └── robots.txt /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/.markdownlintrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/README.md -------------------------------------------------------------------------------- /docs/BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/docs/BEST_PRACTICES.md -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/FAQs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/docs/FAQs.md -------------------------------------------------------------------------------- /docs/FCC_WORKFLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/docs/FCC_WORKFLOW.md -------------------------------------------------------------------------------- /docs/FORK_AND_PULL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/docs/FORK_AND_PULL.md -------------------------------------------------------------------------------- /docs/INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/docs/INSTALLATION.md -------------------------------------------------------------------------------- /docs/REQUIREMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/docs/REQUIREMENTS.md -------------------------------------------------------------------------------- /docs/SETTING_UP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/docs/SETTING_UP.md -------------------------------------------------------------------------------- /docs/WHAT_TO_CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/docs/WHAT_TO_CONTRIBUTE.md -------------------------------------------------------------------------------- /docs/WHY_CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/docs/WHY_CONTRIBUTE.md -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Bio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/src/components/Bio.js -------------------------------------------------------------------------------- /src/components/fcc-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/src/components/fcc-logo.png -------------------------------------------------------------------------------- /src/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/src/layouts/index.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/hello-world/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/src/pages/hello-world/index.md -------------------------------------------------------------------------------- /src/pages/hello-world/salty_egg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/src/pages/hello-world/salty_egg.jpg -------------------------------------------------------------------------------- /src/pages/hi-folks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/src/pages/hi-folks/index.md -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/my-second-post/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/src/pages/my-second-post/index.md -------------------------------------------------------------------------------- /src/templates/blog-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/src/templates/blog-post.js -------------------------------------------------------------------------------- /src/utils/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/src/utils/typography.js -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCampManila/blog/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | --------------------------------------------------------------------------------