Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1023 Bytes

timeline_2.md

File metadata and controls

31 lines (24 loc) · 1023 Bytes
layout title permalink
page
Timeline
/timeline_personal/
{% assign all_posts = site.blogs | sort: 'date' | reverse %} {% assign prev_year = "" %} {% for post in all_posts %} {% assign current_year = post.date | date: "%Y" %} {% if prev_year != current_year %} {% unless forloop.first %}
{% endunless %}

{{ current_year }}

{% endif %}

{{ post.date | date: "%d %b" }} -- {% if post.collection == 'posts' %}Notes{% else %}{{ post.collection | capitalize }}{% endif %} -- {% if post.collection == 'vlogs' %}{{ post.title }}{% else %}{{ post.title }}{% endif %}

</div>
{% assign prev_year = current_year %}

{% endfor %}