Advertisement
Guest User

Untitled

a guest
May 25th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. {% comment %}
  2. *
  3. * List Archive by Year
  4. *
  5. {% endcomment %}
  6. <section id="archive">
  7. <h3>This year's posts</h3>
  8. {%for post in site.posts %}
  9. {% unless post.next %}
  10. <ul class="this">
  11. {% else %}
  12. {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
  13. {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
  14. {% if year != nyear %}
  15. </ul>
  16. <h3>{{ post.date | date: '%Y' }}</h3>
  17. <ul class="past">
  18. {% endif %}
  19. {% endunless %}
  20. <li><time>{{ post.date | date:"%d %b" }}</time><a href="{{ post.url }}">{{ post.title }}</a></li>
  21. {% endfor %}
  22. </ul>
  23. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement