summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorTommy Chen <tommy351@gmail.com>2012-06-03 05:50:08 +0200
committerTommy Chen <tommy351@gmail.com>2012-06-03 05:50:08 +0200
commit8f6ae6b36604c6dcfc105d7bbfd21716373b9739 (patch)
treecddc7dabd852e2c8b550e44b5b769fed9b7d7044 /source
parent5bae43b46cd5dd399836f8e326ee128373c1a855 (diff)
downloadoctopress-theme-jeyzu-8f6ae6b36604c6dcfc105d7bbfd21716373b9739.zip
octopress-theme-jeyzu-8f6ae6b36604c6dcfc105d7bbfd21716373b9739.tar.gz
simplify archive
Diffstat (limited to 'source')
-rw-r--r--source/_includes/archive_post.html28
-rw-r--r--source/_layouts/category_index.html15
-rw-r--r--source/blog/archives/index.html11
3 files changed, 23 insertions, 31 deletions
diff --git a/source/_includes/archive_post.html b/source/_includes/archive_post.html
index 8ceae91..2b006f6 100644
--- a/source/_includes/archive_post.html
+++ b/source/_includes/archive_post.html
@@ -1,9 +1,19 @@
-{% capture category %}{{ post.categories | size }}{% endcapture %}
-<h1 class="title"><a href="{{ root_url }}{{ post.url }}">{{post.title}}</a></h1>
-<div class="meta">
- <span class="date">{{ post.date | date: "%b %e" }}</span>
- <span class="tags">{% include post/categories.html %}</span>
- {% if site.disqus_short_name and post.comments == true %}
- <span class="comments"><a href="{{ root_url }}{{ post.url }}#disqus_thread">Comments</a></span>
- {% endif %}
-</div> \ No newline at end of file
+{% capture date %}{{ post.date }}{% endcapture %}
+{% capture this_year %}{{ date | date: "%Y" }}{% endcapture %}
+{% unless year == this_year %}
+ {% assign year = this_year %}
+ {% unless forloop.first %}
+ </section>
+ {% endunless %}
+ <section class="archives"><h1 class="year">{{ date | date: "%Y" }}</h1>
+{% endunless %}
+<article>
+ <h1 class="title"><a href="{{ root_url }}{{ post.url }}">{{post.title}}</a></h1>
+ <div class="meta">
+ <span class="date">{{ date | date: "%b %e" }}</span>
+ <span class="tags">{% include post/categories.html %}</span>
+ {% if site.disqus_short_name and post.comments == true and site.disqus_show_comment_count == true %}
+ <span class="comments"><a href="{{ root_url }}{{ post.url }}#disqus_thread">Comments</a></span>
+ {% endif %}
+ </div>
+</article> \ No newline at end of file
diff --git a/source/_layouts/category_index.html b/source/_layouts/category_index.html
index 7e64ebe..0c16ef3 100644
--- a/source/_layouts/category_index.html
+++ b/source/_layouts/category_index.html
@@ -2,15 +2,6 @@
layout: default
---
-{% for post in site.categories[page.category] %}
-<section class="archive">
- {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
- {% unless year == this_year %}
- {% assign year = this_year %}
- <h1 class="archive-title">{{ year }}</h1>
- {% endunless %}
- <article class="archive">
- {% include archive_post.html %}
- </article>
-</section>
-{% endfor %}
+{% for post in site.posts reverse %}
+ {% include archive_post.html %}
+{% endfor %} \ No newline at end of file
diff --git a/source/blog/archives/index.html b/source/blog/archives/index.html
index 8c58fea..e4bc23c 100644
--- a/source/blog/archives/index.html
+++ b/source/blog/archives/index.html
@@ -4,14 +4,5 @@ title: Blog Archives
---
{% for post in site.posts reverse %}
-<section class="archive">
- {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
- {% unless year == this_year %}
- {% assign year = this_year %}
- <h1 class="archive-title">{{ year }}</h1>
- {% endunless %}
- <article class="archive">
- {% include archive_post.html %}
- </article>
-</section>
+ {% include archive_post.html %}
{% endfor %} \ No newline at end of file