├── .gitignore ├── .rbenv-version ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── TODO.md ├── example ├── .gitignore ├── .rbenv-version ├── _config.yml ├── _layouts │ └── default.html ├── _misc │ └── 2014-03-05-some-miscellany.md ├── _plugins │ └── page_collections.rb ├── _projects │ ├── 2014-01-01-new-years-resolution.md │ └── 2014-03-05-jekyll-page-collections.md ├── _team │ └── 2014-03-05-jeff-kolesky.md └── index.html ├── page_collections.rb └── test ├── source ├── _config.yml ├── _layouts │ └── default.html ├── _misc │ └── 2014-03-05-some-miscellany.md ├── _plugins │ └── page_collections.rb ├── _projects │ ├── 2014-01-01-new-years-resolution.md │ └── 2014-03-05-jekyll-page-collections.md ├── _team │ └── 2014-03-05-jeff-kolesky.md └── index.html └── test_page_collections.rb /.gitignore: -------------------------------------------------------------------------------- 1 | test/source/_site 2 | -------------------------------------------------------------------------------- /.rbenv-version: -------------------------------------------------------------------------------- 1 | 1.9.3-p374 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/TODO.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | -------------------------------------------------------------------------------- /example/.rbenv-version: -------------------------------------------------------------------------------- 1 | 1.9.3-p374 2 | -------------------------------------------------------------------------------- /example/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/example/_config.yml -------------------------------------------------------------------------------- /example/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/example/_layouts/default.html -------------------------------------------------------------------------------- /example/_misc/2014-03-05-some-miscellany.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/example/_misc/2014-03-05-some-miscellany.md -------------------------------------------------------------------------------- /example/_plugins/page_collections.rb: -------------------------------------------------------------------------------- 1 | ../../page_collections.rb -------------------------------------------------------------------------------- /example/_projects/2014-01-01-new-years-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/example/_projects/2014-01-01-new-years-resolution.md -------------------------------------------------------------------------------- /example/_projects/2014-03-05-jekyll-page-collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/example/_projects/2014-03-05-jekyll-page-collections.md -------------------------------------------------------------------------------- /example/_team/2014-03-05-jeff-kolesky.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/example/_team/2014-03-05-jeff-kolesky.md -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/example/index.html -------------------------------------------------------------------------------- /page_collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/page_collections.rb -------------------------------------------------------------------------------- /test/source/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/test/source/_config.yml -------------------------------------------------------------------------------- /test/source/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/test/source/_layouts/default.html -------------------------------------------------------------------------------- /test/source/_misc/2014-03-05-some-miscellany.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/test/source/_misc/2014-03-05-some-miscellany.md -------------------------------------------------------------------------------- /test/source/_plugins/page_collections.rb: -------------------------------------------------------------------------------- 1 | ../../../page_collections.rb -------------------------------------------------------------------------------- /test/source/_projects/2014-01-01-new-years-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/test/source/_projects/2014-01-01-new-years-resolution.md -------------------------------------------------------------------------------- /test/source/_projects/2014-03-05-jekyll-page-collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/test/source/_projects/2014-03-05-jekyll-page-collections.md -------------------------------------------------------------------------------- /test/source/_team/2014-03-05-jeff-kolesky.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/test/source/_team/2014-03-05-jeff-kolesky.md -------------------------------------------------------------------------------- /test/source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/test/source/index.html -------------------------------------------------------------------------------- /test/test_page_collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkole/jekyll-page-collections/HEAD/test/test_page_collections.rb --------------------------------------------------------------------------------