├── .browserslistrc ├── .codeclimate.yml ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .stylelintrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── content ├── images │ ├── brand.png │ ├── placeholder-660x400-344359.png │ ├── placeholder-660x400-34565f.png │ ├── placeholder-660x400-464662.png │ ├── placeholder-660x400-eeeeee.png │ └── placeholder-660x400-f6cd61.png ├── pages │ ├── about.md │ ├── contact.md │ ├── privacy.md │ ├── search.md │ └── terms.md ├── posts │ ├── 2017-01-01-bold-mage.md │ ├── 2017-02-01-the-fallen-time.md │ ├── 2017-03-01-angels-of-mist.md │ ├── 2017-03-01-birch-in-the-roses.md │ ├── 2017-03-02-random-project-4-with-super-long-title-phase-one.md │ ├── 2017-03-17-the-butterfly-of-the-edge-1.md │ ├── 2017-03-18-the-butterfly-of-the-edge-2.md │ ├── 2017-04-02-the-fairys-witches-1.md │ ├── 2017-04-03-the-fairys-witches-2.md │ ├── 2017-04-04-the-fairys-witches-3.md │ ├── 2017-04-05-the-fairys-witches-4.md │ ├── 2017-04-06-the-fairys-witches-5.md │ ├── 2017-04-07-the-fairys-witches-6.md │ ├── 2017-04-08-the-fairys-witches-7.md │ ├── 2017-04-09-the-fairys-witches-8.md │ ├── 2017-04-10-the-fairys-witches-9.md │ ├── 2017-07-01-big-test-1.md │ ├── 2017-07-02-big-test-2.md │ ├── 2017-07-03-big-test-3.md │ └── 2017-07-04-big-test-4.md └── styles │ ├── code-highlight.scss │ └── customize.scss ├── data └── SiteConfig.js ├── gatsby-config.js ├── gatsby-node.js ├── jsconfig.json ├── netlify.toml ├── package.json ├── src ├── components │ ├── AutoLink │ │ ├── AutoLink.jsx │ │ └── ExternalLink.jsx │ ├── Comment │ │ ├── Comment.jsx │ │ └── Disqus.jsx │ ├── Footer │ │ ├── Copyright.jsx │ │ ├── Footer.jsx │ │ ├── FooterLinks.jsx │ │ └── SocialLinks.jsx │ ├── Header │ │ └── Header.jsx │ ├── Icons │ │ └── FontAwesome.jsx │ ├── MainContainer │ │ ├── MainContainer.jsx │ │ └── MainContainer.scss │ ├── Navigation │ │ ├── Hamburger.jsx │ │ ├── Hamburger.scss │ │ ├── NavBars.jsx │ │ ├── NavBrand.jsx │ │ ├── NavLinks.jsx │ │ ├── Navigation.jsx │ │ └── Navigation.scss │ ├── Page │ │ └── Page.jsx │ ├── Pagination │ │ ├── Pagination.jsx │ │ ├── Pagination.scss │ │ └── PaginationItem.jsx │ ├── Post │ │ ├── Post.jsx │ │ ├── Post.scss │ │ ├── PostCategories.jsx │ │ ├── PostDate.jsx │ │ ├── PostDivider.jsx │ │ ├── PostShare.jsx │ │ └── PostTags.jsx │ ├── PostListing │ │ ├── Article.jsx │ │ ├── Article.scss │ │ ├── PostInfo.jsx │ │ ├── PostListing.jsx │ │ └── Thumbnail.jsx │ ├── SEO │ │ └── SEO.jsx │ ├── ScrollToTop │ │ ├── ScrollToTop.css │ │ └── ScrollToTop.js │ ├── Sidebar │ │ ├── Sidebar.jsx │ │ ├── WidgetCategory.jsx │ │ ├── WidgetContainer.jsx │ │ ├── WidgetLatestPosts.jsx │ │ ├── WidgetLinks.jsx │ │ ├── WidgetSearch.jsx │ │ ├── WidgetTag.jsx │ │ └── WidgetTitle.jsx │ ├── Tag │ │ └── Tag.jsx │ └── UserLinks │ │ ├── UserLinks.css │ │ └── UserLinks.jsx ├── layout │ └── index.jsx ├── pages │ ├── 404.jsx │ └── index.jsx ├── templates │ ├── blog-template.jsx │ ├── category-template.jsx │ ├── page-template.jsx │ ├── post-template.jsx │ └── tag-template.jsx └── utils │ └── helpers.js ├── static ├── favicon.ico ├── google2f74ca45de511f7a.html ├── logos │ ├── logo-1024x1024.png │ ├── logo-192x192.png │ ├── logo-48x48.png │ └── logo-512x512.png └── robots.txt └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | Last 2 versions 2 | -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | public 2 | static 3 | .cache 4 | content -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/.stylelintrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/README.md -------------------------------------------------------------------------------- /content/images/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/images/brand.png -------------------------------------------------------------------------------- /content/images/placeholder-660x400-344359.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/images/placeholder-660x400-344359.png -------------------------------------------------------------------------------- /content/images/placeholder-660x400-34565f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/images/placeholder-660x400-34565f.png -------------------------------------------------------------------------------- /content/images/placeholder-660x400-464662.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/images/placeholder-660x400-464662.png -------------------------------------------------------------------------------- /content/images/placeholder-660x400-eeeeee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/images/placeholder-660x400-eeeeee.png -------------------------------------------------------------------------------- /content/images/placeholder-660x400-f6cd61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/images/placeholder-660x400-f6cd61.png -------------------------------------------------------------------------------- /content/pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/pages/about.md -------------------------------------------------------------------------------- /content/pages/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/pages/contact.md -------------------------------------------------------------------------------- /content/pages/privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/pages/privacy.md -------------------------------------------------------------------------------- /content/pages/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/pages/search.md -------------------------------------------------------------------------------- /content/pages/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/pages/terms.md -------------------------------------------------------------------------------- /content/posts/2017-01-01-bold-mage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-01-01-bold-mage.md -------------------------------------------------------------------------------- /content/posts/2017-02-01-the-fallen-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-02-01-the-fallen-time.md -------------------------------------------------------------------------------- /content/posts/2017-03-01-angels-of-mist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-03-01-angels-of-mist.md -------------------------------------------------------------------------------- /content/posts/2017-03-01-birch-in-the-roses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-03-01-birch-in-the-roses.md -------------------------------------------------------------------------------- /content/posts/2017-03-02-random-project-4-with-super-long-title-phase-one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-03-02-random-project-4-with-super-long-title-phase-one.md -------------------------------------------------------------------------------- /content/posts/2017-03-17-the-butterfly-of-the-edge-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-03-17-the-butterfly-of-the-edge-1.md -------------------------------------------------------------------------------- /content/posts/2017-03-18-the-butterfly-of-the-edge-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-03-18-the-butterfly-of-the-edge-2.md -------------------------------------------------------------------------------- /content/posts/2017-04-02-the-fairys-witches-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-04-02-the-fairys-witches-1.md -------------------------------------------------------------------------------- /content/posts/2017-04-03-the-fairys-witches-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-04-03-the-fairys-witches-2.md -------------------------------------------------------------------------------- /content/posts/2017-04-04-the-fairys-witches-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-04-04-the-fairys-witches-3.md -------------------------------------------------------------------------------- /content/posts/2017-04-05-the-fairys-witches-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-04-05-the-fairys-witches-4.md -------------------------------------------------------------------------------- /content/posts/2017-04-06-the-fairys-witches-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-04-06-the-fairys-witches-5.md -------------------------------------------------------------------------------- /content/posts/2017-04-07-the-fairys-witches-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-04-07-the-fairys-witches-6.md -------------------------------------------------------------------------------- /content/posts/2017-04-08-the-fairys-witches-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-04-08-the-fairys-witches-7.md -------------------------------------------------------------------------------- /content/posts/2017-04-09-the-fairys-witches-8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-04-09-the-fairys-witches-8.md -------------------------------------------------------------------------------- /content/posts/2017-04-10-the-fairys-witches-9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-04-10-the-fairys-witches-9.md -------------------------------------------------------------------------------- /content/posts/2017-07-01-big-test-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-07-01-big-test-1.md -------------------------------------------------------------------------------- /content/posts/2017-07-02-big-test-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-07-02-big-test-2.md -------------------------------------------------------------------------------- /content/posts/2017-07-03-big-test-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-07-03-big-test-3.md -------------------------------------------------------------------------------- /content/posts/2017-07-04-big-test-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/posts/2017-07-04-big-test-4.md -------------------------------------------------------------------------------- /content/styles/code-highlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/content/styles/code-highlight.scss -------------------------------------------------------------------------------- /content/styles/customize.scss: -------------------------------------------------------------------------------- 1 | /* Custom css */ -------------------------------------------------------------------------------- /data/SiteConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/data/SiteConfig.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/jsconfig.json -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/package.json -------------------------------------------------------------------------------- /src/components/AutoLink/AutoLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/AutoLink/AutoLink.jsx -------------------------------------------------------------------------------- /src/components/AutoLink/ExternalLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/AutoLink/ExternalLink.jsx -------------------------------------------------------------------------------- /src/components/Comment/Comment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Comment/Comment.jsx -------------------------------------------------------------------------------- /src/components/Comment/Disqus.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Comment/Disqus.jsx -------------------------------------------------------------------------------- /src/components/Footer/Copyright.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Footer/Copyright.jsx -------------------------------------------------------------------------------- /src/components/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Footer/Footer.jsx -------------------------------------------------------------------------------- /src/components/Footer/FooterLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Footer/FooterLinks.jsx -------------------------------------------------------------------------------- /src/components/Footer/SocialLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Footer/SocialLinks.jsx -------------------------------------------------------------------------------- /src/components/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Header/Header.jsx -------------------------------------------------------------------------------- /src/components/Icons/FontAwesome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Icons/FontAwesome.jsx -------------------------------------------------------------------------------- /src/components/MainContainer/MainContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/MainContainer/MainContainer.jsx -------------------------------------------------------------------------------- /src/components/MainContainer/MainContainer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/MainContainer/MainContainer.scss -------------------------------------------------------------------------------- /src/components/Navigation/Hamburger.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Navigation/Hamburger.jsx -------------------------------------------------------------------------------- /src/components/Navigation/Hamburger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Navigation/Hamburger.scss -------------------------------------------------------------------------------- /src/components/Navigation/NavBars.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Navigation/NavBars.jsx -------------------------------------------------------------------------------- /src/components/Navigation/NavBrand.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Navigation/NavBrand.jsx -------------------------------------------------------------------------------- /src/components/Navigation/NavLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Navigation/NavLinks.jsx -------------------------------------------------------------------------------- /src/components/Navigation/Navigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Navigation/Navigation.jsx -------------------------------------------------------------------------------- /src/components/Navigation/Navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Navigation/Navigation.scss -------------------------------------------------------------------------------- /src/components/Page/Page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Page/Page.jsx -------------------------------------------------------------------------------- /src/components/Pagination/Pagination.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Pagination/Pagination.jsx -------------------------------------------------------------------------------- /src/components/Pagination/Pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Pagination/Pagination.scss -------------------------------------------------------------------------------- /src/components/Pagination/PaginationItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Pagination/PaginationItem.jsx -------------------------------------------------------------------------------- /src/components/Post/Post.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Post/Post.jsx -------------------------------------------------------------------------------- /src/components/Post/Post.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Post/Post.scss -------------------------------------------------------------------------------- /src/components/Post/PostCategories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Post/PostCategories.jsx -------------------------------------------------------------------------------- /src/components/Post/PostDate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Post/PostDate.jsx -------------------------------------------------------------------------------- /src/components/Post/PostDivider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Post/PostDivider.jsx -------------------------------------------------------------------------------- /src/components/Post/PostShare.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Post/PostShare.jsx -------------------------------------------------------------------------------- /src/components/Post/PostTags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Post/PostTags.jsx -------------------------------------------------------------------------------- /src/components/PostListing/Article.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/PostListing/Article.jsx -------------------------------------------------------------------------------- /src/components/PostListing/Article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/PostListing/Article.scss -------------------------------------------------------------------------------- /src/components/PostListing/PostInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/PostListing/PostInfo.jsx -------------------------------------------------------------------------------- /src/components/PostListing/PostListing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/PostListing/PostListing.jsx -------------------------------------------------------------------------------- /src/components/PostListing/Thumbnail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/PostListing/Thumbnail.jsx -------------------------------------------------------------------------------- /src/components/SEO/SEO.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/SEO/SEO.jsx -------------------------------------------------------------------------------- /src/components/ScrollToTop/ScrollToTop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/ScrollToTop/ScrollToTop.css -------------------------------------------------------------------------------- /src/components/ScrollToTop/ScrollToTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/ScrollToTop/ScrollToTop.js -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Sidebar/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/Sidebar/WidgetCategory.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Sidebar/WidgetCategory.jsx -------------------------------------------------------------------------------- /src/components/Sidebar/WidgetContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Sidebar/WidgetContainer.jsx -------------------------------------------------------------------------------- /src/components/Sidebar/WidgetLatestPosts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Sidebar/WidgetLatestPosts.jsx -------------------------------------------------------------------------------- /src/components/Sidebar/WidgetLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Sidebar/WidgetLinks.jsx -------------------------------------------------------------------------------- /src/components/Sidebar/WidgetSearch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Sidebar/WidgetSearch.jsx -------------------------------------------------------------------------------- /src/components/Sidebar/WidgetTag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Sidebar/WidgetTag.jsx -------------------------------------------------------------------------------- /src/components/Sidebar/WidgetTitle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Sidebar/WidgetTitle.jsx -------------------------------------------------------------------------------- /src/components/Tag/Tag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/Tag/Tag.jsx -------------------------------------------------------------------------------- /src/components/UserLinks/UserLinks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/UserLinks/UserLinks.css -------------------------------------------------------------------------------- /src/components/UserLinks/UserLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/components/UserLinks/UserLinks.jsx -------------------------------------------------------------------------------- /src/layout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/layout/index.jsx -------------------------------------------------------------------------------- /src/pages/404.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/pages/404.jsx -------------------------------------------------------------------------------- /src/pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/pages/index.jsx -------------------------------------------------------------------------------- /src/templates/blog-template.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/templates/blog-template.jsx -------------------------------------------------------------------------------- /src/templates/category-template.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/templates/category-template.jsx -------------------------------------------------------------------------------- /src/templates/page-template.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/templates/page-template.jsx -------------------------------------------------------------------------------- /src/templates/post-template.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/templates/post-template.jsx -------------------------------------------------------------------------------- /src/templates/tag-template.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/templates/tag-template.jsx -------------------------------------------------------------------------------- /src/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/src/utils/helpers.js -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/google2f74ca45de511f7a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/static/google2f74ca45de511f7a.html -------------------------------------------------------------------------------- /static/logos/logo-1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/static/logos/logo-1024x1024.png -------------------------------------------------------------------------------- /static/logos/logo-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/static/logos/logo-192x192.png -------------------------------------------------------------------------------- /static/logos/logo-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/static/logos/logo-48x48.png -------------------------------------------------------------------------------- /static/logos/logo-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/static/logos/logo-512x512.png -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/static/robots.txt -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/completejavascript/gatsby-blog-template/HEAD/yarn.lock --------------------------------------------------------------------------------