title.html

 1{% for category in site.data.categories %}
 2  {% if category.slug == page.category %}
 3    {% assign category_name =  category.name %}
 4  {% endif %}
 5{% endfor %}
 6
 7<h1 class="page-title">
 8    <div class="page-title-text">{{ category_name }}</div>
 9    <div class="page-title-subtitle">Articles in the category <strong>‘{{ category_name }}’</strong></div>
10</h1>