Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 581 Bytes

archive_by_date.md

File metadata and controls

23 lines (20 loc) · 581 Bytes
layout title permalink
page
Archive
/archive_by_date/

Archives by Date

    {% 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>{{ post.date | date:"%b" }} <a href="{{ post.url }}">{{ post.title }}</a></li>
    

    {% endfor %}