---
layout: default
title: Category
permalink: /category/
public: true
---
Category
{% capture categories %}{% for category in site.categories %}{{ category | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
{% assign category = categories | split:',' | sort %}
{% for item in (0..site.categories.size) %}{% unless forloop.last %}
{% capture word %}{{ category[item] | strip_newlines }}{% endcapture %}
{{ word | upcase }}
{% for post in site.categories[word] %}{% if post.title != null %}
- {{ post.date | date: "%b %d" }} ยป {{ post.title }}
{% endif %}{% endfor %}
{% endunless %}{% endfor %}