diff options
| author | Antonin Descampe <antonin@gmail.com> | 2015-06-16 10:54:48 +0200 |
|---|---|---|
| committer | Antonin Descampe <antonin@gmail.com> | 2015-06-16 10:54:48 +0200 |
| commit | 6aa449bd03e48cf069500bd36ca4bab4e4280c38 (patch) | |
| tree | 79d606f09ed54e702e88e7040b3773a5c6f30e41 /_includes/JB/posts_collate | |
initial commit with jekyll-boostrap
Diffstat (limited to '_includes/JB/posts_collate')
| -rw-r--r-- | _includes/JB/posts_collate | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/_includes/JB/posts_collate b/_includes/JB/posts_collate new file mode 100644 index 00000000..f612ade8 --- /dev/null +++ b/_includes/JB/posts_collate @@ -0,0 +1,55 @@ +{% comment %}<!-- +Collate_posts helper. Collated posts by year and month. +Usage: + 1) assign the 'posts_collate' variable to a valid array of posts. + 2) include JB/posts_collate + example: + {% assign posts_collate = site.posts %} + {% include JB/posts_collate %} + + Ordering: + Posts are displayed in reverse chronological order. + For normal chronological order: + 1) Change the for loop to this: + => 'for post in site.posts reversed' + 2) Next make sure to change 'post.previous.date' to: + => 'post.next.date' + +-->{% endcomment %} + +{% if site.JB.posts_collate.provider == "custom" %} + {% include custom/posts_collate %} +{% else %} + {% for post in posts_collate %} + {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %} + {% capture this_month %}{{ post.date | date: "%B" }}{% endcapture %} + {% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %} + {% capture next_month %}{{ post.previous.date | date: "%B" }}{% endcapture %} + + {% if forloop.first %} + <h2>{{this_year}}</h2> + <h3>{{this_month}}</h3> + <ul> + {% endif %} + + <li><span>{{ post.date | date: "%B %e, %Y" }}</span> » <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></li> + + {% if forloop.last %} + </ul> + {% else %} + {% if this_year != next_year %} + </ul> + <h2>{{next_year}}</h2> + <h3>{{next_month}}</h3> + <ul> + {% else %} + {% if this_month != next_month %} + </ul> + <h3>{{next_month}}</h3> + <ul> + {% endif %} + {% endif %} + {% endif %} + {% endfor %} +{% endif %} +{% assign posts_collate = nil %}
\ No newline at end of file |
