NixNet/_includes/category/title.html

11 lines
363 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>
2018-12-15 05:52:02 +00:00
<div class="page-title__subtitle">Articles in the category <strong>{{ category_name }}</strong></div>
</h1>