Skip to content

Latest commit

 

History

History
33 lines (33 loc) · 960 Bytes

all-posts.md

File metadata and controls

33 lines (33 loc) · 960 Bytes
layout title permalink
main
All blog posts
/all-posts/

All blog posts

{% assign sorted_posts = site.posts | sort: "date" | reverse %} {% assign years = "" %}
    {% for post in sorted_posts %} {% capture year %}{{ post.date | date: "%Y" }}{% endcapture %} {% if year != years %} {% unless forloop.first %}
{% endunless %}

{{ year }}

    {% assign years = year %} {% endif %}
  • {{ post.title }} - {{ post.date | date: "%-d %B" }} in {% for tag in post.tags %} {% assign tag_title = tag %} {{ tag_title }} {% if forloop.last == false %}, {% endif %} {% endfor %}
  • {% endfor %}