Skip to content

Latest commit

 

History

History
31 lines (29 loc) · 1.05 KB

archivebycategory.md

File metadata and controls

31 lines (29 loc) · 1.05 KB
layout title permalink sitemap
page
Post by Category
/categoryview/
false
{% assign categories = site.categories | sort %} {% for category in categories %} {{ category[0] | replace:'-', ' ' }} ({{ category | last | size }}) {% endfor %}
{% for category in categories %}

{{ category[0] | replace:'-', ' ' }} ({{ category | last | size }})

{% assign sorted_posts = site.posts | sort: 'title' %} {% for post in sorted_posts %} {%if post.categories contains category[0]%}

{{ post.excerpt | strip_html | truncate: 160 }}

{%endif%} {% endfor %} {% endfor %}