Skip to content

Files

Latest commit

Feb 13, 2015
5ec42ca · Feb 13, 2015

History

History
23 lines (21 loc) · 630 Bytes

Archive.md

File metadata and controls

23 lines (21 loc) · 630 Bytes
layout title
page
Archives
    {% for post in site.posts %}
    {% unless post.next %}
      <h3>{{ post.date | date: '%Y' }}</h3>
    {% else %}
      {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
      {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
      {% if year != nyear %}
        <h3>{{ post.date | date: '%Y' }}</h3>
      {% endif %}
    {% endunless %}
    
    <li>    
        <div class="month">{{ post.date | date:"%b" }}</div>
        <div class="archive-post-title"><a href="{{ post.url }}">{{ post.title }}</a></div>
    </li>
    

    {% endfor %}