--- layout: archive permalink: /category-archive/ title: "Posts by Category" --- {% include absolute-url.liquid %} {% capture site_categories %}{% for category in site.categories %}{{ category | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %} {% assign category_list = site_categories | split:',' | sort %} {% for item in (0..site.categories.size) %} {% unless forloop.last %} {% capture category_name %}{{ category_list[item] | strip_newlines }}{% endcapture %}

{{ category_name }}

{% for post in site.categories[category_name] %} {% if post.title != null %}
{% if post.link %}

{{ post.title }}

{% else %}

{{ post.title }}

{{ post.excerpt | markdownify | strip_html | strip_newlines | escape_once }}

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