├── .editorconfig ├── .gitignore ├── .weekly-feed ├── 2016-03-13-vote.json ├── 2016-03-13.json ├── 2016-03-20-vote.json ├── 2016-03-20.json ├── 2016-03-27-vote.json ├── 2016-03-27.json ├── 2016-04-03-vote.json ├── 2016-04-03.json ├── 2016-04-10-vote.json ├── 2016-04-10.json ├── 2016-04-17-vote.json ├── 2016-04-17.json ├── 2016-04-24-vote.json ├── 2016-04-24.json ├── 2016-05-01-vote.json ├── 2016-05-01.json ├── 2016-05-08-vote.json ├── 2016-05-08.json ├── 2016-05-15-vote.json ├── 2016-05-15.json ├── 2016-05-22-vote.json ├── 2016-05-22.json ├── 2016-05-29-vote.json ├── 2016-05-29.json ├── 2016-06-05-vote.json ├── 2016-06-05.json ├── 2016-06-12-vote.json ├── 2016-06-12.json ├── 2016-06-19-vote.json ├── 2016-06-19.json ├── 2016-06-26-vote.json ├── 2016-06-26.json ├── 2016-07-03-vote.json ├── 2016-07-03.json ├── 2016-07-10-vote.json ├── 2016-07-10.json ├── 2016-07-17-vote.json ├── 2016-07-17.json ├── 2016-07-24-vote.json ├── 2016-07-24.json ├── 2016-07-31-vote.json ├── 2016-07-31.json ├── 2016-08-07-vote.json ├── 2016-08-07.json ├── 2016-08-14-vote.json ├── 2016-08-14.json ├── 2016-08-21-vote.json ├── 2016-08-21.json ├── 2016-08-28-vote.json ├── 2016-08-28.json └── getData │ ├── bookmarklet-auto-issue.js │ ├── bookmarklet-vote.js │ ├── calcTop10.js │ ├── index.html │ ├── js.js │ ├── lastSunday.js │ ├── pullFeeds.js │ └── queryVote.js ├── 404.md ├── CHANGELOG.md ├── CNAME ├── LICENSE ├── README.md ├── _config.yml ├── _data ├── 2016-03-13.yml ├── 2016-03-20.yml ├── 2016-03-27.yml ├── 2016-04-03.yml ├── 2016-04-10.yml ├── 2016-04-17.yml ├── 2016-04-24.yml ├── 2016-05-01.yml ├── 2016-05-08.yml ├── 2016-05-15.yml ├── 2016-05-22.yml ├── 2016-05-29.yml ├── 2016-06-05.yml ├── 2016-06-12.yml ├── 2016-06-19.yml ├── 2016-06-26.yml ├── 2016-07-03.yml ├── 2016-07-10.yml ├── 2016-07-17.yml ├── 2016-07-24.yml ├── 2016-07-31.yml ├── 2016-08-07.yml ├── 2016-08-14.yml ├── 2016-08-21.yml └── 2016-08-28.yml ├── _includes ├── analytics.html ├── card.html ├── counter.html ├── disqus.html ├── meta.html └── svg-icons.html ├── _layouts ├── default.html ├── page.html └── post.html ├── _plugins ├── merge_space.rb └── strip_url_protocol.rb ├── _posts ├── 2016-01-01-draft.md ├── 2016-03-13-000.md ├── 2016-03-20-001.md ├── 2016-03-27-002.md ├── 2016-04-03-003.md ├── 2016-04-10-004.md ├── 2016-04-17-005.md ├── 2016-04-24-006.md ├── 2016-05-01-007.md ├── 2016-05-08-008.md ├── 2016-05-15-009.md ├── 2016-05-22-010.md ├── 2016-05-29-011.md ├── 2016-06-05-012.md ├── 2016-06-12-013.md ├── 2016-06-19-014.md ├── 2016-06-26-015.md ├── 2016-07-03-016.md ├── 2016-07-10-017.md ├── 2016-07-17-018.md ├── 2016-07-24-019.md ├── 2016-07-31-020.md ├── 2016-08-07-021.md ├── 2016-08-14-022.md ├── 2016-08-21-023.md └── 2016-08-28-024.md ├── _sass ├── abstracts │ ├── _mixin.scss │ └── _var.scss ├── base │ ├── _base.scss │ └── _shame.scss ├── components │ ├── _card.scss │ ├── _nav.scss │ ├── _page.scss │ ├── _pagination.scss │ └── _search.scss ├── layout │ ├── _footer.scss │ ├── _header.scss │ ├── _navigation.scss │ └── _stick-footer.scss ├── pages │ ├── _index.scss │ └── _tags.scss └── vendors │ ├── _highlights.scss │ ├── _normalize.scss │ └── basscss │ ├── _align.scss │ ├── _all.scss │ ├── _background-colors.scss │ ├── _background-images.scss │ ├── _border-colors.scss │ ├── _border.scss │ ├── _btn-outline.scss │ ├── _btn-primary.scss │ ├── _btn.scss │ ├── _colors.scss │ ├── _darken.scss │ ├── _flexbox.scss │ ├── _forms.scss │ ├── _grid.scss │ ├── _hide.scss │ ├── _highlight-dark.scss │ ├── _highlight.scss │ ├── _input-range.scss │ ├── _layout.scss │ ├── _lighten.scss │ ├── _margin.scss │ ├── _media-object.scss │ ├── _padding.scss │ ├── _position.scss │ ├── _progress.scss │ ├── _responsive-margin.scss │ ├── _responsive-padding.scss │ ├── _type-scale.scss │ ├── _typography.scss │ └── basscss.scss ├── about.md ├── feed.xml ├── gulpfile.js ├── images └── 404.jpg ├── index.html ├── package.json ├── postcssconfig.json ├── scripts ├── search.js └── search_data.json ├── search.html ├── style.scss └── tags.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /.weekly-feed/2016-03-13-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-03-13-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-03-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-03-13.json -------------------------------------------------------------------------------- /.weekly-feed/2016-03-20-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-03-20-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-03-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-03-20.json -------------------------------------------------------------------------------- /.weekly-feed/2016-03-27-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-03-27-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-03-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-03-27.json -------------------------------------------------------------------------------- /.weekly-feed/2016-04-03-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-04-03-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-04-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-04-03.json -------------------------------------------------------------------------------- /.weekly-feed/2016-04-10-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-04-10-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-04-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-04-10.json -------------------------------------------------------------------------------- /.weekly-feed/2016-04-17-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-04-17-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-04-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-04-17.json -------------------------------------------------------------------------------- /.weekly-feed/2016-04-24-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-04-24-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-04-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-04-24.json -------------------------------------------------------------------------------- /.weekly-feed/2016-05-01-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-05-01-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-05-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-05-01.json -------------------------------------------------------------------------------- /.weekly-feed/2016-05-08-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-05-08-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-05-08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-05-08.json -------------------------------------------------------------------------------- /.weekly-feed/2016-05-15-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-05-15-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-05-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-05-15.json -------------------------------------------------------------------------------- /.weekly-feed/2016-05-22-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-05-22-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-05-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-05-22.json -------------------------------------------------------------------------------- /.weekly-feed/2016-05-29-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-05-29-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-05-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-05-29.json -------------------------------------------------------------------------------- /.weekly-feed/2016-06-05-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-06-05-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-06-05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-06-05.json -------------------------------------------------------------------------------- /.weekly-feed/2016-06-12-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-06-12-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-06-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-06-12.json -------------------------------------------------------------------------------- /.weekly-feed/2016-06-19-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-06-19-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-06-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-06-19.json -------------------------------------------------------------------------------- /.weekly-feed/2016-06-26-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-06-26-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-06-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-06-26.json -------------------------------------------------------------------------------- /.weekly-feed/2016-07-03-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-07-03-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-07-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-07-03.json -------------------------------------------------------------------------------- /.weekly-feed/2016-07-10-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-07-10-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-07-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-07-10.json -------------------------------------------------------------------------------- /.weekly-feed/2016-07-17-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-07-17-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-07-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-07-17.json -------------------------------------------------------------------------------- /.weekly-feed/2016-07-24-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-07-24-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-07-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-07-24.json -------------------------------------------------------------------------------- /.weekly-feed/2016-07-31-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-07-31-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-07-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-07-31.json -------------------------------------------------------------------------------- /.weekly-feed/2016-08-07-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-08-07-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-08-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-08-07.json -------------------------------------------------------------------------------- /.weekly-feed/2016-08-14-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-08-14-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-08-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-08-14.json -------------------------------------------------------------------------------- /.weekly-feed/2016-08-21-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-08-21-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-08-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-08-21.json -------------------------------------------------------------------------------- /.weekly-feed/2016-08-28-vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-08-28-vote.json -------------------------------------------------------------------------------- /.weekly-feed/2016-08-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/2016-08-28.json -------------------------------------------------------------------------------- /.weekly-feed/getData/bookmarklet-auto-issue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/getData/bookmarklet-auto-issue.js -------------------------------------------------------------------------------- /.weekly-feed/getData/bookmarklet-vote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/getData/bookmarklet-vote.js -------------------------------------------------------------------------------- /.weekly-feed/getData/calcTop10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/getData/calcTop10.js -------------------------------------------------------------------------------- /.weekly-feed/getData/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/getData/index.html -------------------------------------------------------------------------------- /.weekly-feed/getData/js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/getData/js.js -------------------------------------------------------------------------------- /.weekly-feed/getData/lastSunday.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/getData/lastSunday.js -------------------------------------------------------------------------------- /.weekly-feed/getData/pullFeeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/getData/pullFeeds.js -------------------------------------------------------------------------------- /.weekly-feed/getData/queryVote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/.weekly-feed/getData/queryVote.js -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/404.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/2016-03-13.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-03-13.yml -------------------------------------------------------------------------------- /_data/2016-03-20.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-03-20.yml -------------------------------------------------------------------------------- /_data/2016-03-27.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-03-27.yml -------------------------------------------------------------------------------- /_data/2016-04-03.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-04-03.yml -------------------------------------------------------------------------------- /_data/2016-04-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-04-10.yml -------------------------------------------------------------------------------- /_data/2016-04-17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-04-17.yml -------------------------------------------------------------------------------- /_data/2016-04-24.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-04-24.yml -------------------------------------------------------------------------------- /_data/2016-05-01.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-05-01.yml -------------------------------------------------------------------------------- /_data/2016-05-08.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-05-08.yml -------------------------------------------------------------------------------- /_data/2016-05-15.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-05-15.yml -------------------------------------------------------------------------------- /_data/2016-05-22.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-05-22.yml -------------------------------------------------------------------------------- /_data/2016-05-29.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-05-29.yml -------------------------------------------------------------------------------- /_data/2016-06-05.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-06-05.yml -------------------------------------------------------------------------------- /_data/2016-06-12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-06-12.yml -------------------------------------------------------------------------------- /_data/2016-06-19.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-06-19.yml -------------------------------------------------------------------------------- /_data/2016-06-26.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-06-26.yml -------------------------------------------------------------------------------- /_data/2016-07-03.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-07-03.yml -------------------------------------------------------------------------------- /_data/2016-07-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-07-10.yml -------------------------------------------------------------------------------- /_data/2016-07-17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-07-17.yml -------------------------------------------------------------------------------- /_data/2016-07-24.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-07-24.yml -------------------------------------------------------------------------------- /_data/2016-07-31.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-07-31.yml -------------------------------------------------------------------------------- /_data/2016-08-07.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-08-07.yml -------------------------------------------------------------------------------- /_data/2016-08-14.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-08-14.yml -------------------------------------------------------------------------------- /_data/2016-08-21.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-08-21.yml -------------------------------------------------------------------------------- /_data/2016-08-28.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_data/2016-08-28.yml -------------------------------------------------------------------------------- /_includes/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_includes/analytics.html -------------------------------------------------------------------------------- /_includes/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_includes/card.html -------------------------------------------------------------------------------- /_includes/counter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_includes/counter.html -------------------------------------------------------------------------------- /_includes/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_includes/disqus.html -------------------------------------------------------------------------------- /_includes/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_includes/meta.html -------------------------------------------------------------------------------- /_includes/svg-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_includes/svg-icons.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_plugins/merge_space.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_plugins/merge_space.rb -------------------------------------------------------------------------------- /_plugins/strip_url_protocol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_plugins/strip_url_protocol.rb -------------------------------------------------------------------------------- /_posts/2016-01-01-draft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-01-01-draft.md -------------------------------------------------------------------------------- /_posts/2016-03-13-000.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-03-13-000.md -------------------------------------------------------------------------------- /_posts/2016-03-20-001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-03-20-001.md -------------------------------------------------------------------------------- /_posts/2016-03-27-002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-03-27-002.md -------------------------------------------------------------------------------- /_posts/2016-04-03-003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-04-03-003.md -------------------------------------------------------------------------------- /_posts/2016-04-10-004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-04-10-004.md -------------------------------------------------------------------------------- /_posts/2016-04-17-005.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-04-17-005.md -------------------------------------------------------------------------------- /_posts/2016-04-24-006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-04-24-006.md -------------------------------------------------------------------------------- /_posts/2016-05-01-007.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-05-01-007.md -------------------------------------------------------------------------------- /_posts/2016-05-08-008.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-05-08-008.md -------------------------------------------------------------------------------- /_posts/2016-05-15-009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-05-15-009.md -------------------------------------------------------------------------------- /_posts/2016-05-22-010.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-05-22-010.md -------------------------------------------------------------------------------- /_posts/2016-05-29-011.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-05-29-011.md -------------------------------------------------------------------------------- /_posts/2016-06-05-012.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-06-05-012.md -------------------------------------------------------------------------------- /_posts/2016-06-12-013.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-06-12-013.md -------------------------------------------------------------------------------- /_posts/2016-06-19-014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-06-19-014.md -------------------------------------------------------------------------------- /_posts/2016-06-26-015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-06-26-015.md -------------------------------------------------------------------------------- /_posts/2016-07-03-016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-07-03-016.md -------------------------------------------------------------------------------- /_posts/2016-07-10-017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-07-10-017.md -------------------------------------------------------------------------------- /_posts/2016-07-17-018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-07-17-018.md -------------------------------------------------------------------------------- /_posts/2016-07-24-019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-07-24-019.md -------------------------------------------------------------------------------- /_posts/2016-07-31-020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-07-31-020.md -------------------------------------------------------------------------------- /_posts/2016-08-07-021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-08-07-021.md -------------------------------------------------------------------------------- /_posts/2016-08-14-022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-08-14-022.md -------------------------------------------------------------------------------- /_posts/2016-08-21-023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-08-21-023.md -------------------------------------------------------------------------------- /_posts/2016-08-28-024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_posts/2016-08-28-024.md -------------------------------------------------------------------------------- /_sass/abstracts/_mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/abstracts/_mixin.scss -------------------------------------------------------------------------------- /_sass/abstracts/_var.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/abstracts/_var.scss -------------------------------------------------------------------------------- /_sass/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/base/_base.scss -------------------------------------------------------------------------------- /_sass/base/_shame.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_sass/components/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/components/_card.scss -------------------------------------------------------------------------------- /_sass/components/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/components/_nav.scss -------------------------------------------------------------------------------- /_sass/components/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/components/_page.scss -------------------------------------------------------------------------------- /_sass/components/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/components/_pagination.scss -------------------------------------------------------------------------------- /_sass/components/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/components/_search.scss -------------------------------------------------------------------------------- /_sass/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/layout/_footer.scss -------------------------------------------------------------------------------- /_sass/layout/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/layout/_header.scss -------------------------------------------------------------------------------- /_sass/layout/_navigation.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_sass/layout/_stick-footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/layout/_stick-footer.scss -------------------------------------------------------------------------------- /_sass/pages/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/pages/_index.scss -------------------------------------------------------------------------------- /_sass/pages/_tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/pages/_tags.scss -------------------------------------------------------------------------------- /_sass/vendors/_highlights.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/_highlights.scss -------------------------------------------------------------------------------- /_sass/vendors/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/_normalize.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_align.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_all.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_background-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_background-colors.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_background-images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_background-images.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_border-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_border-colors.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_border.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_border.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_btn-outline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_btn-outline.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_btn-primary.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_btn-primary.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_btn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_btn.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_colors.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_darken.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_darken.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_flexbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_flexbox.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_forms.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_grid.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_hide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_hide.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_highlight-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_highlight-dark.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_highlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_highlight.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_input-range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_input-range.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_layout.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_lighten.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_lighten.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_margin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_margin.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_media-object.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_media-object.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_padding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_padding.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_position.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_progress.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_responsive-margin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_responsive-margin.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_responsive-padding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_responsive-padding.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_type-scale.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_type-scale.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/_typography.scss -------------------------------------------------------------------------------- /_sass/vendors/basscss/basscss.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/_sass/vendors/basscss/basscss.scss -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/about.md -------------------------------------------------------------------------------- /feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/feed.xml -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/gulpfile.js -------------------------------------------------------------------------------- /images/404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/images/404.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/package.json -------------------------------------------------------------------------------- /postcssconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/postcssconfig.json -------------------------------------------------------------------------------- /scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/scripts/search.js -------------------------------------------------------------------------------- /scripts/search_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/scripts/search_data.json -------------------------------------------------------------------------------- /search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/search.html -------------------------------------------------------------------------------- /style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/style.scss -------------------------------------------------------------------------------- /tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f2etw/weekly-collection/HEAD/tags.md --------------------------------------------------------------------------------