layout | title |
---|---|
default |
Archive |
{% for post in site.posts %} {% assign currentDate = post.date | date: "%Y" %} {% if currentDate != prevDate %} {% unless forloop.first %}{% endunless %}
-
{% 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 %}