For a unified experience, please go to the
GitHub Issues to ask question, report bugs, and ask for features.
{% assign sortedCategories = site.categories | sort %}
{% for category in sortedCategories %}
{{ category[0] | join: "/" | upcase }}
{% for posts in category %}
{% for post in posts reversed %}
{% if post.title != null%}
-
{{ post.title }}
{{ post.content }}
{% endif %}
{% endfor %}
{% endfor %}
{% endfor %}