diff options
author | Fabien Pelletier <fabien.pelletier53@gmail.com> | 2012-07-26 03:48:52 +0200 |
---|---|---|
committer | Fabien Pelletier <fabien.pelletier53@gmail.com> | 2012-07-26 03:48:52 +0200 |
commit | e59365358810fe96d8614d4185884bb70daa6aba (patch) | |
tree | 914abeb24ed5e655849b1bf2d2711ff52844b46e /source | |
parent | 1cbf29e405986bc14f19e63772f98232992d7bcf (diff) | |
download | octopress-theme-jeyzu-e59365358810fe96d8614d4185884bb70daa6aba.zip octopress-theme-jeyzu-e59365358810fe96d8614d4185884bb70daa6aba.tar.gz |
Fix category index
Diffstat (limited to 'source')
-rw-r--r-- | source/_layouts/category_index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/_layouts/category_index.html b/source/_layouts/category_index.html index 0c16ef3..8ab5341 100644 --- a/source/_layouts/category_index.html +++ b/source/_layouts/category_index.html @@ -2,6 +2,6 @@ layout: default --- -{% for post in site.posts reverse %} +{% for post in site.categories[page.category] %} {% include archive_post.html %} -{% endfor %}
\ No newline at end of file +{% endfor %} |