Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 764 Bytes

archives.md

File metadata and controls

25 lines (21 loc) · 764 Bytes
layout title permalink
page
Archives
/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><!-- {{ post.date | date:"%b" }}  --><a href="{{ post.url }}">{{ post.title }}</a></li>
    

    {% endfor %}

subscribe via RSS