├── .gitignore ├── .tito ├── packages │ ├── .readme │ └── limonite └── tito.props ├── .travis.yml ├── Cargo.lock ├── Cargo.toml ├── README.markdown ├── fixtures ├── 000 │ └── _layouts │ │ └── main.html ├── 001 │ ├── _layouts │ │ └── main.html │ └── _limonite.yml ├── 002 │ └── _layouts │ │ ├── main.html │ │ └── post.html ├── 003 │ └── _posts │ │ └── 2015-10-26-001-merry-xmas.markdown ├── 004 │ └── _layouts │ │ ├── main.html │ │ └── post.html ├── 005 │ ├── _layouts │ │ ├── main.html │ │ └── post.html │ ├── _limonite.yml │ └── _posts │ │ ├── 2015-10-26-001-merry-xmas.markdown │ │ └── 2015-10-26-002-meh.markdown ├── 006 │ ├── _layouts │ │ ├── main.html │ │ └── post.html │ ├── _limonite.yml │ └── _posts │ │ └── 2015-10-26-001-merry-xmas.markdown ├── 007 │ ├── _layouts │ │ └── .gitkeep │ ├── _limonite.yml │ ├── _posts │ │ └── .gitkeep │ └── index.html ├── 008 │ ├── a │ └── b ├── 009 │ ├── _layouts │ │ ├── main.html │ │ └── post.html │ ├── _limonite.yml │ └── _posts │ │ ├── 2015-10-26-001-merry-xmas.markdown │ │ └── 2015-10-26-002-meh.markdown ├── 010-output │ └── index.html ├── 010 │ ├── _layouts │ │ ├── main.html │ │ └── post.html │ ├── _limonite.yml │ ├── _posts │ │ ├── 2015-10-26-001-merry-xmas.markdown │ │ └── 2015-10-26-002-meh.markdown │ └── index.html ├── 011-output │ └── main.html ├── 011 │ ├── _layouts │ │ └── .gitkeep │ ├── _limonite.yml │ ├── _posts │ │ └── .gitkeep │ └── main.html ├── 012 │ ├── index.html │ └── static.html ├── canonical-output │ ├── archive │ │ └── index.html │ ├── css │ │ └── style.css │ ├── index.html │ └── merry-xmas │ │ └── index.html └── canonical │ ├── _layouts │ ├── base.hbs │ └── post.hbs │ ├── _limonite.yml │ ├── _posts │ └── 2015-10-26-001-merry-xmas.markdown │ ├── archive │ └── index.html.hbs │ ├── css │ └── style.css │ └── index.html.hbs ├── limonite.spec ├── src ├── bin │ └── limonite.rs ├── diff.rs ├── lib.rs ├── post.rs ├── post.rs.in ├── site.rs ├── site.rs.in └── util.rs └── tests └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /.tito/packages/.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmx/limonite/HEAD/.tito/packages/.readme -------------------------------------------------------------------------------- /.tito/packages/limonite: -------------------------------------------------------------------------------- 1 | 0.2.2-1 ./ 2 | -------------------------------------------------------------------------------- /.tito/tito.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmx/limonite/HEAD/.tito/tito.props -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmx/limonite/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmx/limonite/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmx/limonite/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmx/limonite/HEAD/README.markdown -------------------------------------------------------------------------------- /fixtures/000/_layouts/main.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/001/_layouts/main.html: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | Hello {{ content }} 4 | -------------------------------------------------------------------------------- /fixtures/001/_limonite.yml: -------------------------------------------------------------------------------- 1 | base_url: http://example.com -------------------------------------------------------------------------------- /fixtures/002/_layouts/main.html: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | Hello {{ content }} 4 | -------------------------------------------------------------------------------- /fixtures/002/_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: main 3 | --- 4 | Hello {{ content }} 5 | -------------------------------------------------------------------------------- /fixtures/003/_posts/2015-10-26-001-merry-xmas.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmx/limonite/HEAD/fixtures/003/_posts/2015-10-26-001-merry-xmas.markdown -------------------------------------------------------------------------------- /fixtures/004/_layouts/main.html: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | Main 4 | 5 | {{ content }} -------------------------------------------------------------------------------- /fixtures/004/_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: main 3 | --- 4 | Post 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /fixtures/005/_layouts/main.html: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | Main 4 | {{ content }} 5 | -------------------------------------------------------------------------------- /fixtures/005/_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: main 3 | --- 4 | Post 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /fixtures/005/_limonite.yml: -------------------------------------------------------------------------------- 1 | base_url: http://example.com -------------------------------------------------------------------------------- /fixtures/005/_posts/2015-10-26-001-merry-xmas.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: wild merry xmas! 4 | --- 5 | # hello shit -------------------------------------------------------------------------------- /fixtures/005/_posts/2015-10-26-002-meh.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | --- 4 | # hello shit -------------------------------------------------------------------------------- /fixtures/006/_layouts/main.html: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | Main 4 | {{ content }} 5 | -------------------------------------------------------------------------------- /fixtures/006/_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: main 3 | --- 4 | Post 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /fixtures/006/_limonite.yml: -------------------------------------------------------------------------------- 1 | base_url: http://example.com -------------------------------------------------------------------------------- /fixtures/006/_posts/2015-10-26-001-merry-xmas.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | --- 4 | # hello shit -------------------------------------------------------------------------------- /fixtures/007/_layouts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/007/_limonite.yml: -------------------------------------------------------------------------------- 1 | base_url: http://example.com -------------------------------------------------------------------------------- /fixtures/007/_posts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/007/index.html: -------------------------------------------------------------------------------- 1 | boo 2 | -------------------------------------------------------------------------------- /fixtures/008/a: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /fixtures/008/b: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /fixtures/009/_layouts/main.html: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | Main 4 | {{ content }} 5 | -------------------------------------------------------------------------------- /fixtures/009/_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: main 3 | --- 4 | Post 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /fixtures/009/_limonite.yml: -------------------------------------------------------------------------------- 1 | base_url: http://example.com -------------------------------------------------------------------------------- /fixtures/009/_posts/2015-10-26-001-merry-xmas.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmx/limonite/HEAD/fixtures/009/_posts/2015-10-26-001-merry-xmas.markdown -------------------------------------------------------------------------------- /fixtures/009/_posts/2015-10-26-002-meh.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | --- 4 | # hello shit -------------------------------------------------------------------------------- /fixtures/010-output/index.html: -------------------------------------------------------------------------------- 1 | woo -------------------------------------------------------------------------------- /fixtures/010/_layouts/main.html: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | Main 4 | {{ content }} 5 | -------------------------------------------------------------------------------- /fixtures/010/_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: main 3 | --- 4 | Post 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /fixtures/010/_limonite.yml: -------------------------------------------------------------------------------- 1 | base_url: http://example.com -------------------------------------------------------------------------------- /fixtures/010/_posts/2015-10-26-001-merry-xmas.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmx/limonite/HEAD/fixtures/010/_posts/2015-10-26-001-merry-xmas.markdown -------------------------------------------------------------------------------- /fixtures/010/_posts/2015-10-26-002-meh.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | --- 4 | # hello shit -------------------------------------------------------------------------------- /fixtures/010/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmx/limonite/HEAD/fixtures/010/index.html -------------------------------------------------------------------------------- /fixtures/011-output/main.html: -------------------------------------------------------------------------------- 1 | bazinga 2 | -------------------------------------------------------------------------------- /fixtures/011/_layouts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/011/_limonite.yml: -------------------------------------------------------------------------------- 1 | base_url: http://example.com -------------------------------------------------------------------------------- /fixtures/011/_posts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/011/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmx/limonite/HEAD/fixtures/011/main.html -------------------------------------------------------------------------------- /fixtures/012/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: woo 3 | --- -------------------------------------------------------------------------------- /fixtures/012/static.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmx/limonite/HEAD/fixtures/012/static.html -------------------------------------------------------------------------------- /fixtures/canonical-output/archive/index.html: -------------------------------------------------------------------------------- 1 | 2 |