Skip to content

Latest commit

 

History

History
32 lines (28 loc) · 886 Bytes

File metadata and controls

32 lines (28 loc) · 886 Bytes
layout default
title Archives
permalink /archives/

ARCHIVES

{% for post in site.posts %}
{{ post.date | date: "%B %-d, %Y" }} {{ post.title }}
    {% if post.tags.size > 0 %}
    <div class="post-tags">
      {% for tag in post.tags %}
        <a class="tag" href="/tags/{{ tag | slugify }}/">#{{ tag }}</a>
      {% endfor %}
    </div>
    {% endif %}
  </div>
{% endfor %}