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 %}
{% 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 %}