diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-06-27 15:59:21 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-06-27 15:59:21 -0400 |
commit | 353ccfd4ebec153a46b12faffff8ab2bba36efc8 (patch) | |
tree | 93eb860d1bbad2bb3f008ce1d37523254220a4b0 /themes/classic/source/index.html | |
parent | ef3ff431e5c3028b764d1938bb552a76c340799c (diff) | |
download | my_new_personal_website-353ccfd4ebec153a46b12faffff8ab2bba36efc8.tar.xz my_new_personal_website-353ccfd4ebec153a46b12faffff8ab2bba36efc8.zip |
1. Added Category support
2. Designed blog archives pages
3. Restructured Sass
4. Added Categories to rake post metadata
5. Some general style improvements
Diffstat (limited to '')
-rw-r--r-- | themes/classic/source/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/classic/source/index.html b/themes/classic/source/index.html index d6ff868e..47d848e3 100644 --- a/themes/classic/source/index.html +++ b/themes/classic/source/index.html @@ -3,8 +3,8 @@ layout: default blog_index: true --- {% assign index = true %} -{% for page in paginator.posts %} -{% assign content = page.content %} +{% for post in paginator.posts %} +{% assign content = post.content %} <article> {% include article.html %} </article> |