Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 625 Bytes

archives.md

File metadata and controls

12 lines (10 loc) · 625 Bytes
layout title
page
Archives

Date based archives

{% year_utilities years_with_month_links %}

Category based archives

{% capture category_names %}{% for category in site.categories %}|{{ category | first }}{% endfor %}{% endcapture %} {% assign sorted_category_names = category_names | split: '|' | sort %} {% for category_name in sorted_category_names %}{% assign stripped_category_name = category_name | strip %}{% if stripped_category_name != "" %}{{category_name}}{% unless forloop.last %}, {% endunless %}{% endif %}{% endfor %}