diff options
author | SkyArrow <tommy351@gmail.com> | 2012-01-24 14:53:22 +0100 |
---|---|---|
committer | SkyArrow <tommy351@gmail.com> | 2012-01-24 14:53:22 +0100 |
commit | 1c574d24b7fdd482499fa9553c19342b6a4d391e (patch) | |
tree | 3381ce235c72044d6fa76243e9d6948c737a6e4f /source/index.html | |
download | octopress-theme-jeyzu-1c574d24b7fdd482499fa9553c19342b6a4d391e.zip octopress-theme-jeyzu-1c574d24b7fdd482499fa9553c19342b6a4d391e.tar.gz |
created
Diffstat (limited to 'source/index.html')
-rw-r--r-- | source/index.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/source/index.html b/source/index.html new file mode 100644 index 0000000..2614667 --- /dev/null +++ b/source/index.html @@ -0,0 +1,21 @@ +--- +layout: default +--- + +<section id="main_col" class="left"> + {% assign index = true %} + {% for post in paginator.posts %} + {% assign content = post.content %} + <article class="post">{% include article.html %}</article> + {% endfor %} + <nav id="pagenavi"> + {% if paginator.previous_page %} + <a href="{{paginator.previous_page}}" class="prev">上一頁</a> + {% endif %} + {% if paginator.next_page %} + <a href="{{paginator.next_page}}" class="next">下一頁</a> + {% endif %} + </nav> +</section> +{% include asides.html %} +<div class="clear"></div>
\ No newline at end of file |