From f7058301385bcf9cab6ee3a98bfc1a0e7a120388 Mon Sep 17 00:00:00 2001 From: Jade Dominguez Date: Mon, 9 Sep 2013 22:35:03 -0700 Subject: [PATCH] Add sample _root pages. --- _root/archive.html | 4 ++++ _root/categories.html | 15 +++++++++++++++ _root/index.html | 31 +++++++++++++++++++++++++++++++ _root/pages.html | 6 ++++++ _root/tags.html | 13 +++++++++++++ 5 files changed, 69 insertions(+) create mode 100644 _root/archive.html create mode 100644 _root/categories.html create mode 100644 _root/index.html create mode 100644 _root/pages.html create mode 100644 _root/tags.html diff --git a/_root/archive.html b/_root/archive.html new file mode 100644 index 0000000..8b21b6c --- /dev/null +++ b/_root/archive.html @@ -0,0 +1,4 @@ + +{{# posts.collated }} + {{> posts_collate }} +{{/ posts.collated }} diff --git a/_root/categories.html b/_root/categories.html new file mode 100644 index 0000000..978d26e --- /dev/null +++ b/_root/categories.html @@ -0,0 +1,15 @@ + + + +{{# posts.categories.all }} +

{{ name }} ({{ count }})

+ +{{/ posts.categories.all }} diff --git a/_root/index.html b/_root/index.html new file mode 100644 index 0000000..a026363 --- /dev/null +++ b/_root/index.html @@ -0,0 +1,31 @@ +--- +title: Home +description: +--- + +## Hello World + +{{# posts.paginator }} +
+

{{title}} {{ date }}

+ + {{{ summary }}} + + +
+{{/ posts.paginator }} + + diff --git a/_root/pages.html b/_root/pages.html new file mode 100644 index 0000000..ca1bb46 --- /dev/null +++ b/_root/pages.html @@ -0,0 +1,6 @@ + + diff --git a/_root/tags.html b/_root/tags.html new file mode 100644 index 0000000..0b0defa --- /dev/null +++ b/_root/tags.html @@ -0,0 +1,13 @@ + + + +{{# posts.tags.all }} +

{{name}}

+ {{# posts?to_posts }} +
  • {{title}}
  • + {{/ posts?to_posts }} +{{/ posts.tags.all }}