Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 821 Bytes

archive.md

File metadata and controls

34 lines (26 loc) · 821 Bytes
layout title
default
Archive

All posts

{% for post in site.posts %} {% assign currentDate = post.date | date: "%Y" %} {% if currentDate != prevDate %} {% unless forloop.first %}{% endunless %}

{{ currentDate }}

    {% assign prevDate = currentDate %} {% endif %}
  • {{ post.date | date: "%B %-d, %Y" }} - {{ post.title }}

        {% if post.tags %}
        {% assign sorted_tags = post.tags | sort %}
        {% for tag in sorted_tags %}
        <span class="tag">{{tag}}</span>
        {% endfor %}
        {% endif %}
    
       </li>
    
       {% if forloop.last %}</ul>{% endif %}
    

    {% endfor %}