├── .eslintrc.js ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .lintstagedrc.js ├── .npmignore ├── .prettierrc.js ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── ThemeProvider.js ├── contents ├── blog │ ├── my-first-blog-post-2.md │ └── my-first-blog-post.md ├── projects.yml └── uses.yml ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── index.js ├── package.json ├── screenshots ├── gatsby-theme-open-sourcerer.png └── performance.png └── src ├── assets └── images │ ├── hero-bg.svg │ ├── link-underline.svg │ └── logo.svg ├── components ├── ArrowLeftIcon.js ├── ArrowRightIcon.js ├── Box.js ├── BrandLogo.js ├── CalendarIcon.js ├── ChevronLeftIcon.js ├── ChevronRightIcon.js ├── ClockIcon.js ├── Container.js ├── Divider.js ├── FacebookIcon.js ├── FacebookSquareIcon.js ├── Footer.js ├── GithubIcon.js ├── HackerNewsSquareIcon.js ├── HashIcon.js ├── Header.js ├── HeaderMenu.js ├── HeroSection.js ├── Image.js ├── InstagramIcon.js ├── LinkButton.js ├── LinkIcon.js ├── LinkedinIcon.js ├── List.js ├── MailIcon.js ├── MenuIcon.js ├── MoonIcon.js ├── Paginate.js ├── PostMeta.js ├── PostSummaryCard.js ├── PostTags.js ├── ProjectCard.js ├── ProjectGrid.js ├── RedditSquareIcon.js ├── SEO.js ├── SocialLinks.js ├── SocialShareLinks.js ├── StarIcon.js ├── SunIcon.js ├── TagItem.js ├── Text.js ├── TwitterIcon.js ├── TwitterSquareIcon.js ├── UserIcon.js ├── UsesList.js ├── UtterancesComments.js └── index.js ├── config └── index.js ├── layouts ├── DefaultLayout.js ├── FullPageLayout.js └── index.js ├── pages ├── 404.js └── index.js ├── services └── ConfigServices.js ├── styles ├── GlobalStyles.js └── themes │ ├── baseTheme.js │ ├── dark.js │ ├── index.js │ ├── light.js │ └── syntax-open-sourcerer.css ├── templates ├── About.js ├── Contact.js ├── Post.js ├── Posts.js ├── Projects.js ├── Tag.js ├── Tags.js └── Uses.js └── utils ├── generateSchema.js ├── toKebabCase.js └── toTitleCase.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/.lintstagedrc.js -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/README.md -------------------------------------------------------------------------------- /ThemeProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/ThemeProvider.js -------------------------------------------------------------------------------- /contents/blog/my-first-blog-post-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/contents/blog/my-first-blog-post-2.md -------------------------------------------------------------------------------- /contents/blog/my-first-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/contents/blog/my-first-blog-post.md -------------------------------------------------------------------------------- /contents/projects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/contents/projects.yml -------------------------------------------------------------------------------- /contents/uses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/contents/uses.yml -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | // something will go here 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/gatsby-theme-open-sourcerer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/screenshots/gatsby-theme-open-sourcerer.png -------------------------------------------------------------------------------- /screenshots/performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/screenshots/performance.png -------------------------------------------------------------------------------- /src/assets/images/hero-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/assets/images/hero-bg.svg -------------------------------------------------------------------------------- /src/assets/images/link-underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/assets/images/link-underline.svg -------------------------------------------------------------------------------- /src/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/assets/images/logo.svg -------------------------------------------------------------------------------- /src/components/ArrowLeftIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/ArrowLeftIcon.js -------------------------------------------------------------------------------- /src/components/ArrowRightIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/ArrowRightIcon.js -------------------------------------------------------------------------------- /src/components/Box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/Box.js -------------------------------------------------------------------------------- /src/components/BrandLogo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/BrandLogo.js -------------------------------------------------------------------------------- /src/components/CalendarIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/CalendarIcon.js -------------------------------------------------------------------------------- /src/components/ChevronLeftIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/ChevronLeftIcon.js -------------------------------------------------------------------------------- /src/components/ChevronRightIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/ChevronRightIcon.js -------------------------------------------------------------------------------- /src/components/ClockIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/ClockIcon.js -------------------------------------------------------------------------------- /src/components/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/Container.js -------------------------------------------------------------------------------- /src/components/Divider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/Divider.js -------------------------------------------------------------------------------- /src/components/FacebookIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/FacebookIcon.js -------------------------------------------------------------------------------- /src/components/FacebookSquareIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/FacebookSquareIcon.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/GithubIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/GithubIcon.js -------------------------------------------------------------------------------- /src/components/HackerNewsSquareIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/HackerNewsSquareIcon.js -------------------------------------------------------------------------------- /src/components/HashIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/HashIcon.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/HeaderMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/HeaderMenu.js -------------------------------------------------------------------------------- /src/components/HeroSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/HeroSection.js -------------------------------------------------------------------------------- /src/components/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/Image.js -------------------------------------------------------------------------------- /src/components/InstagramIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/InstagramIcon.js -------------------------------------------------------------------------------- /src/components/LinkButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/LinkButton.js -------------------------------------------------------------------------------- /src/components/LinkIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/LinkIcon.js -------------------------------------------------------------------------------- /src/components/LinkedinIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/LinkedinIcon.js -------------------------------------------------------------------------------- /src/components/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/List.js -------------------------------------------------------------------------------- /src/components/MailIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/MailIcon.js -------------------------------------------------------------------------------- /src/components/MenuIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/MenuIcon.js -------------------------------------------------------------------------------- /src/components/MoonIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/MoonIcon.js -------------------------------------------------------------------------------- /src/components/Paginate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/Paginate.js -------------------------------------------------------------------------------- /src/components/PostMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/PostMeta.js -------------------------------------------------------------------------------- /src/components/PostSummaryCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/PostSummaryCard.js -------------------------------------------------------------------------------- /src/components/PostTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/PostTags.js -------------------------------------------------------------------------------- /src/components/ProjectCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/ProjectCard.js -------------------------------------------------------------------------------- /src/components/ProjectGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/ProjectGrid.js -------------------------------------------------------------------------------- /src/components/RedditSquareIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/RedditSquareIcon.js -------------------------------------------------------------------------------- /src/components/SEO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/SEO.js -------------------------------------------------------------------------------- /src/components/SocialLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/SocialLinks.js -------------------------------------------------------------------------------- /src/components/SocialShareLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/SocialShareLinks.js -------------------------------------------------------------------------------- /src/components/StarIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/StarIcon.js -------------------------------------------------------------------------------- /src/components/SunIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/SunIcon.js -------------------------------------------------------------------------------- /src/components/TagItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/TagItem.js -------------------------------------------------------------------------------- /src/components/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/Text.js -------------------------------------------------------------------------------- /src/components/TwitterIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/TwitterIcon.js -------------------------------------------------------------------------------- /src/components/TwitterSquareIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/TwitterSquareIcon.js -------------------------------------------------------------------------------- /src/components/UserIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/UserIcon.js -------------------------------------------------------------------------------- /src/components/UsesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/UsesList.js -------------------------------------------------------------------------------- /src/components/UtterancesComments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/UtterancesComments.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/config/index.js -------------------------------------------------------------------------------- /src/layouts/DefaultLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/layouts/DefaultLayout.js -------------------------------------------------------------------------------- /src/layouts/FullPageLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/layouts/FullPageLayout.js -------------------------------------------------------------------------------- /src/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/layouts/index.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/services/ConfigServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/services/ConfigServices.js -------------------------------------------------------------------------------- /src/styles/GlobalStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/styles/GlobalStyles.js -------------------------------------------------------------------------------- /src/styles/themes/baseTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/styles/themes/baseTheme.js -------------------------------------------------------------------------------- /src/styles/themes/dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/styles/themes/dark.js -------------------------------------------------------------------------------- /src/styles/themes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/styles/themes/index.js -------------------------------------------------------------------------------- /src/styles/themes/light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/styles/themes/light.js -------------------------------------------------------------------------------- /src/styles/themes/syntax-open-sourcerer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/styles/themes/syntax-open-sourcerer.css -------------------------------------------------------------------------------- /src/templates/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/templates/About.js -------------------------------------------------------------------------------- /src/templates/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/templates/Contact.js -------------------------------------------------------------------------------- /src/templates/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/templates/Post.js -------------------------------------------------------------------------------- /src/templates/Posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/templates/Posts.js -------------------------------------------------------------------------------- /src/templates/Projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/templates/Projects.js -------------------------------------------------------------------------------- /src/templates/Tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/templates/Tag.js -------------------------------------------------------------------------------- /src/templates/Tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/templates/Tags.js -------------------------------------------------------------------------------- /src/templates/Uses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/templates/Uses.js -------------------------------------------------------------------------------- /src/utils/generateSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/utils/generateSchema.js -------------------------------------------------------------------------------- /src/utils/toKebabCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/utils/toKebabCase.js -------------------------------------------------------------------------------- /src/utils/toTitleCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sh4hids/gatsby-theme-open-sourcerer/HEAD/src/utils/toTitleCase.js --------------------------------------------------------------------------------