summaryrefslogtreecommitdiffstats
path: root/_root/index.html
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-10-30 00:18:56 -0400
committerJesse Luehrs <doy@tozt.net>2013-10-30 00:18:56 -0400
commitbb0a4f4e126c05fc73d566986fd1612468f5be67 (patch)
treea3a712e0a27ea1fe41d3d6097326896afd2f53f5 /_root/index.html
downloadblog.tozt.net-bb0a4f4e126c05fc73d566986fd1612468f5be67.tar.gz
blog.tozt.net-bb0a4f4e126c05fc73d566986fd1612468f5be67.zip
initial commit
Diffstat (limited to '_root/index.html')
-rw-r--r--_root/index.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/_root/index.html b/_root/index.html
new file mode 100644
index 0000000..1a0d384
--- /dev/null
+++ b/_root/index.html
@@ -0,0 +1,26 @@
+---
+title: home
+---
+{{# posts.paginator }}
+<div class="post">
+ <h3 class="title"><a href="{{url}}">{{title}}</a> <span class="date">{{ date }}</span></h3>
+ {{{ summary }}}
+ <div class="more">
+ <a href="{{url}}">read more..</a>
+ </div>
+</div>
+{{/ posts.paginator }}
+
+<hr>
+<div class="pagination">
+ <ul>
+ {{#posts.paginator_navigation}}
+ {{#is_active_page}}
+ <li class="active"><a href="{{url}}">{{name}}</a></li>
+ {{/is_active_page}}
+ {{^is_active_page}}
+ <li><a href="{{url}}">{{name}}</a></li>
+ {{/is_active_page}}
+ {{/posts.paginator_navigation}}
+ </ul>
+</div>