diff options
-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 %} |