├── .github └── FUNDING.yml ├── .gitignore ├── 404.html ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── README.md ├── _config.yml ├── _data └── navigation.yml ├── _includes ├── anchor_headings.html ├── head.html ├── inline.scss └── navigation.html ├── _layouts ├── compress.html ├── default.html ├── page.html ├── post.html ├── search.html ├── tag.html └── tags.html ├── _pages ├── about.md └── search.md ├── _plugins └── tags.rb ├── _posts ├── 2014-05-12-css-hacks-you-may-not-know.md ├── 2015-07-31-places-where-you-can-learn-how-to-code.md ├── 2016-11-27-top-monospaced-fonts-for-coding.md ├── 2016-12-11-structured-data-markup-validation-and-testing-tools.md ├── 2017-01-03-creating-navigation-menu-in-jekyll.md ├── 2017-11-10-redirect-jekyll-urls.md ├── 2017-11-15-custom-404-page-for-jekyll-on-github-pages.md ├── 2018-01-17-showing-the-word-count.md ├── 2018-02-03-image-captions-in-jekyll.md ├── 2018-02-05-disable-jekylls-default-syntax-highlighter-rouge.md ├── 2018-05-13-displaying-github-gists-in-jekyll-sites.md ├── 2018-06-07-applying-the-active-class-for-the-current-page-in-jekyll.md ├── 2018-06-14-install-jekyll-on-mac-os.md ├── 2018-08-18-top-plugins-for-wordpress-websites.md ├── 2018-09-11-how-to-add-an-rss-feed-to-a-jekyll-blog.md ├── 2018-09-20-jekyll-reading-time-without-plugins.md ├── 2018-11-12-page-specific-assets-in-jekyll.md ├── 2018-12-23-syntax-highlight-with-rouge-in-jekyll.md ├── 2019-05-23-adding-http-response-headers-to-a-netlify-static-website.md ├── 2019-07-23-staticman-comments-on-a-jekyll-site.md └── 2019-08-31-difference-between-font-formats.md ├── _sass └── _main.scss ├── _site ├── 2014 │ └── 05 │ │ └── 12 │ │ └── css-hacks-you-may-not-know.html ├── 2015 │ └── 07 │ │ └── 31 │ │ └── places-where-you-can-learn-how-to-code.html ├── 2016 │ ├── 11 │ │ └── 27 │ │ │ └── top-monospaced-fonts-for-coding.html │ └── 12 │ │ └── 11 │ │ └── structured-data-markup-validation-and-testing-tools.html ├── 2017 │ ├── 11 │ │ ├── 10 │ │ │ └── redirect-jekyll-urls.html │ │ └── 15 │ │ │ └── custom-404-page-for-jekyll-on-github-pages.html │ └── 01 │ │ └── 03 │ │ └── creating-navigation-menu-in-jekyll.html ├── 2018 │ ├── 11 │ │ └── 12 │ │ │ └── page-specific-assets-in-jekyll.html │ ├── 12 │ │ └── 23 │ │ │ └── syntax-highlight-with-rouge-in-jekyll.html │ ├── 01 │ │ └── 17 │ │ │ └── showing-the-word-count.html │ ├── 02 │ │ ├── 03 │ │ │ └── image-captions-in-jekyll.html │ │ └── 05 │ │ │ └── disable-jekylls-default-syntax-highlighter-rouge.html │ ├── 05 │ │ └── 13 │ │ │ └── displaying-github-gists-in-jekyll-sites.html │ ├── 06 │ │ ├── 14 │ │ │ └── install-jekyll-on-mac-os.html │ │ └── 07 │ │ │ └── applying-the-active-class-for-the-current-page-in-jekyll.html │ ├── 08 │ │ └── 18 │ │ │ └── top-plugins-for-wordpress-websites.html │ └── 09 │ │ ├── 11 │ │ └── how-to-add-an-rss-feed-to-a-jekyll-blog.html │ │ └── 20 │ │ └── jekyll-reading-time-without-plugins.html ├── 2019 │ ├── 05 │ │ └── 23 │ │ │ └── adding-http-response-headers-to-a-netlify-static-website.html │ ├── 07 │ │ └── 23 │ │ │ └── staticman-comments-on-a-jekyll-site.html │ └── 08 │ │ └── 31 │ │ └── difference-between-font-formats.html ├── 404.html ├── about.html ├── assets │ └── js │ │ └── search-script.min.js ├── atom.xml ├── favicon.png ├── feed.json ├── index.html ├── netlify.toml ├── robots.txt ├── screenshot.png ├── search.html ├── search.js ├── search.json ├── sitemap.xml └── tag │ ├── coding │ └── index.html │ ├── css │ └── index.html │ ├── jekyll │ └── index.html │ ├── netlify │ └── index.html │ ├── security │ └── index.html │ ├── seo │ └── index.html │ ├── typography │ └── index.html │ └── wordpress │ └── index.html ├── assets └── js │ └── search-script.min.js ├── atom.xml ├── favicon.png ├── feed.json ├── index.html ├── netlify.toml ├── robots.txt ├── screenshot.png ├── search.js └── search.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://www.buymeacoffee.com/ronaldsvilcins"] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/.gitignore -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/404.html -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_data/navigation.yml -------------------------------------------------------------------------------- /_includes/anchor_headings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_includes/anchor_headings.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/inline.scss: -------------------------------------------------------------------------------- 1 | @import "main"; -------------------------------------------------------------------------------- /_includes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_includes/navigation.html -------------------------------------------------------------------------------- /_layouts/compress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_layouts/compress.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_layouts/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_layouts/search.html -------------------------------------------------------------------------------- /_layouts/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_layouts/tag.html -------------------------------------------------------------------------------- /_layouts/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_layouts/tags.html -------------------------------------------------------------------------------- /_pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_pages/about.md -------------------------------------------------------------------------------- /_pages/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_pages/search.md -------------------------------------------------------------------------------- /_plugins/tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_plugins/tags.rb -------------------------------------------------------------------------------- /_posts/2014-05-12-css-hacks-you-may-not-know.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2014-05-12-css-hacks-you-may-not-know.md -------------------------------------------------------------------------------- /_posts/2015-07-31-places-where-you-can-learn-how-to-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2015-07-31-places-where-you-can-learn-how-to-code.md -------------------------------------------------------------------------------- /_posts/2016-11-27-top-monospaced-fonts-for-coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2016-11-27-top-monospaced-fonts-for-coding.md -------------------------------------------------------------------------------- /_posts/2016-12-11-structured-data-markup-validation-and-testing-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2016-12-11-structured-data-markup-validation-and-testing-tools.md -------------------------------------------------------------------------------- /_posts/2017-01-03-creating-navigation-menu-in-jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2017-01-03-creating-navigation-menu-in-jekyll.md -------------------------------------------------------------------------------- /_posts/2017-11-10-redirect-jekyll-urls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2017-11-10-redirect-jekyll-urls.md -------------------------------------------------------------------------------- /_posts/2017-11-15-custom-404-page-for-jekyll-on-github-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2017-11-15-custom-404-page-for-jekyll-on-github-pages.md -------------------------------------------------------------------------------- /_posts/2018-01-17-showing-the-word-count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2018-01-17-showing-the-word-count.md -------------------------------------------------------------------------------- /_posts/2018-02-03-image-captions-in-jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2018-02-03-image-captions-in-jekyll.md -------------------------------------------------------------------------------- /_posts/2018-02-05-disable-jekylls-default-syntax-highlighter-rouge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2018-02-05-disable-jekylls-default-syntax-highlighter-rouge.md -------------------------------------------------------------------------------- /_posts/2018-05-13-displaying-github-gists-in-jekyll-sites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2018-05-13-displaying-github-gists-in-jekyll-sites.md -------------------------------------------------------------------------------- /_posts/2018-06-07-applying-the-active-class-for-the-current-page-in-jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2018-06-07-applying-the-active-class-for-the-current-page-in-jekyll.md -------------------------------------------------------------------------------- /_posts/2018-06-14-install-jekyll-on-mac-os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2018-06-14-install-jekyll-on-mac-os.md -------------------------------------------------------------------------------- /_posts/2018-08-18-top-plugins-for-wordpress-websites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2018-08-18-top-plugins-for-wordpress-websites.md -------------------------------------------------------------------------------- /_posts/2018-09-11-how-to-add-an-rss-feed-to-a-jekyll-blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2018-09-11-how-to-add-an-rss-feed-to-a-jekyll-blog.md -------------------------------------------------------------------------------- /_posts/2018-09-20-jekyll-reading-time-without-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2018-09-20-jekyll-reading-time-without-plugins.md -------------------------------------------------------------------------------- /_posts/2018-11-12-page-specific-assets-in-jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2018-11-12-page-specific-assets-in-jekyll.md -------------------------------------------------------------------------------- /_posts/2018-12-23-syntax-highlight-with-rouge-in-jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2018-12-23-syntax-highlight-with-rouge-in-jekyll.md -------------------------------------------------------------------------------- /_posts/2019-05-23-adding-http-response-headers-to-a-netlify-static-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2019-05-23-adding-http-response-headers-to-a-netlify-static-website.md -------------------------------------------------------------------------------- /_posts/2019-07-23-staticman-comments-on-a-jekyll-site.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2019-07-23-staticman-comments-on-a-jekyll-site.md -------------------------------------------------------------------------------- /_posts/2019-08-31-difference-between-font-formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_posts/2019-08-31-difference-between-font-formats.md -------------------------------------------------------------------------------- /_sass/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_sass/_main.scss -------------------------------------------------------------------------------- /_site/2014/05/12/css-hacks-you-may-not-know.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2014/05/12/css-hacks-you-may-not-know.html -------------------------------------------------------------------------------- /_site/2015/07/31/places-where-you-can-learn-how-to-code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2015/07/31/places-where-you-can-learn-how-to-code.html -------------------------------------------------------------------------------- /_site/2016/11/27/top-monospaced-fonts-for-coding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2016/11/27/top-monospaced-fonts-for-coding.html -------------------------------------------------------------------------------- /_site/2016/12/11/structured-data-markup-validation-and-testing-tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2016/12/11/structured-data-markup-validation-and-testing-tools.html -------------------------------------------------------------------------------- /_site/2017/01/03/creating-navigation-menu-in-jekyll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2017/01/03/creating-navigation-menu-in-jekyll.html -------------------------------------------------------------------------------- /_site/2017/11/10/redirect-jekyll-urls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2017/11/10/redirect-jekyll-urls.html -------------------------------------------------------------------------------- /_site/2017/11/15/custom-404-page-for-jekyll-on-github-pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2017/11/15/custom-404-page-for-jekyll-on-github-pages.html -------------------------------------------------------------------------------- /_site/2018/01/17/showing-the-word-count.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2018/01/17/showing-the-word-count.html -------------------------------------------------------------------------------- /_site/2018/02/03/image-captions-in-jekyll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2018/02/03/image-captions-in-jekyll.html -------------------------------------------------------------------------------- /_site/2018/02/05/disable-jekylls-default-syntax-highlighter-rouge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2018/02/05/disable-jekylls-default-syntax-highlighter-rouge.html -------------------------------------------------------------------------------- /_site/2018/05/13/displaying-github-gists-in-jekyll-sites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2018/05/13/displaying-github-gists-in-jekyll-sites.html -------------------------------------------------------------------------------- /_site/2018/06/07/applying-the-active-class-for-the-current-page-in-jekyll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2018/06/07/applying-the-active-class-for-the-current-page-in-jekyll.html -------------------------------------------------------------------------------- /_site/2018/06/14/install-jekyll-on-mac-os.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2018/06/14/install-jekyll-on-mac-os.html -------------------------------------------------------------------------------- /_site/2018/08/18/top-plugins-for-wordpress-websites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2018/08/18/top-plugins-for-wordpress-websites.html -------------------------------------------------------------------------------- /_site/2018/09/11/how-to-add-an-rss-feed-to-a-jekyll-blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2018/09/11/how-to-add-an-rss-feed-to-a-jekyll-blog.html -------------------------------------------------------------------------------- /_site/2018/09/20/jekyll-reading-time-without-plugins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2018/09/20/jekyll-reading-time-without-plugins.html -------------------------------------------------------------------------------- /_site/2018/11/12/page-specific-assets-in-jekyll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2018/11/12/page-specific-assets-in-jekyll.html -------------------------------------------------------------------------------- /_site/2018/12/23/syntax-highlight-with-rouge-in-jekyll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2018/12/23/syntax-highlight-with-rouge-in-jekyll.html -------------------------------------------------------------------------------- /_site/2019/05/23/adding-http-response-headers-to-a-netlify-static-website.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2019/05/23/adding-http-response-headers-to-a-netlify-static-website.html -------------------------------------------------------------------------------- /_site/2019/07/23/staticman-comments-on-a-jekyll-site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2019/07/23/staticman-comments-on-a-jekyll-site.html -------------------------------------------------------------------------------- /_site/2019/08/31/difference-between-font-formats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/2019/08/31/difference-between-font-formats.html -------------------------------------------------------------------------------- /_site/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/404.html -------------------------------------------------------------------------------- /_site/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/about.html -------------------------------------------------------------------------------- /_site/assets/js/search-script.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/assets/js/search-script.min.js -------------------------------------------------------------------------------- /_site/atom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/atom.xml -------------------------------------------------------------------------------- /_site/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/favicon.png -------------------------------------------------------------------------------- /_site/feed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/feed.json -------------------------------------------------------------------------------- /_site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/index.html -------------------------------------------------------------------------------- /_site/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/netlify.toml -------------------------------------------------------------------------------- /_site/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/robots.txt -------------------------------------------------------------------------------- /_site/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/screenshot.png -------------------------------------------------------------------------------- /_site/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/search.html -------------------------------------------------------------------------------- /_site/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/search.js -------------------------------------------------------------------------------- /_site/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/search.json -------------------------------------------------------------------------------- /_site/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/sitemap.xml -------------------------------------------------------------------------------- /_site/tag/coding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/tag/coding/index.html -------------------------------------------------------------------------------- /_site/tag/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/tag/css/index.html -------------------------------------------------------------------------------- /_site/tag/jekyll/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/tag/jekyll/index.html -------------------------------------------------------------------------------- /_site/tag/netlify/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/tag/netlify/index.html -------------------------------------------------------------------------------- /_site/tag/security/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/tag/security/index.html -------------------------------------------------------------------------------- /_site/tag/seo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/tag/seo/index.html -------------------------------------------------------------------------------- /_site/tag/typography/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/tag/typography/index.html -------------------------------------------------------------------------------- /_site/tag/wordpress/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/_site/tag/wordpress/index.html -------------------------------------------------------------------------------- /assets/js/search-script.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/assets/js/search-script.min.js -------------------------------------------------------------------------------- /atom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/atom.xml -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/favicon.png -------------------------------------------------------------------------------- /feed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/feed.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/index.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/netlify.toml -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/robots.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/screenshot.png -------------------------------------------------------------------------------- /search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/search.js -------------------------------------------------------------------------------- /search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronv/sidey/HEAD/search.json --------------------------------------------------------------------------------