├── .gitignore ├── .ruby-version ├── CNAME ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── _includes ├── fathom-analytics.html ├── footer-copy.md ├── footer.html ├── header.html ├── intro-copy.md └── intro.html ├── _layouts └── default.html ├── icons ├── orange-icon.svg ├── orange-square.png └── orange-square.svg ├── index.md ├── tools └── pretty-feed-v3.xsl └── why.md /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.6 2 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | aboutfeeds.com -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'github-pages', "~> 227", group: :jekyll_plugins 3 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genmon/aboutfeeds/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genmon/aboutfeeds/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genmon/aboutfeeds/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/fathom-analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genmon/aboutfeeds/HEAD/_includes/fathom-analytics.html -------------------------------------------------------------------------------- /_includes/footer-copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genmon/aboutfeeds/HEAD/_includes/footer-copy.md -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genmon/aboutfeeds/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genmon/aboutfeeds/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/intro-copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genmon/aboutfeeds/HEAD/_includes/intro-copy.md -------------------------------------------------------------------------------- /_includes/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genmon/aboutfeeds/HEAD/_includes/intro.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genmon/aboutfeeds/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /icons/orange-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genmon/aboutfeeds/HEAD/icons/orange-icon.svg -------------------------------------------------------------------------------- /icons/orange-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genmon/aboutfeeds/HEAD/icons/orange-square.png -------------------------------------------------------------------------------- /icons/orange-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genmon/aboutfeeds/HEAD/icons/orange-square.svg -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genmon/aboutfeeds/HEAD/index.md -------------------------------------------------------------------------------- /tools/pretty-feed-v3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genmon/aboutfeeds/HEAD/tools/pretty-feed-v3.xsl -------------------------------------------------------------------------------- /why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genmon/aboutfeeds/HEAD/why.md --------------------------------------------------------------------------------