NixNet/_includes/category/title.html

10 lines
362 B
HTML
Raw Normal View History

2018-12-14 05:47:01 +00:00
{% for category in site.data.categories %}
{% if category.slug == page.category %}
{% assign category_name = category.name %}
{% endif %}
{% endfor %}
<h1 class="page-title">
<div class="page-title__text">{{ category_name }}</div>
<div class="page-title__subtitle">Articles on the category <strong>{{ category_name }}</strong></div>
</h1>