blog/_layouts/category.html (15 lines of code) (raw):
---
layout: archive-notitle
---
<h1>
{% if page.taxonomy.size <= 2 %}
{{ page.taxonomy | upcase }}
{% else %}
{{ page.taxonomy | capitalize }}
{% endif %}
</h1>
{{ page.taxonomy_description }}
{% assign entries_layout = page.entries_layout | default: 'list' %}
<div class="entries-{{ entries_layout }}">
{% include posts-category.html taxonomy=page.taxonomy type=entries_layout %}
</div>