NixNet/_includes/category/title.html

11 lines
361 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">
2019-06-06 13:28:38 +00:00
<div class="page-title-text">{{ category_name }}</div>
<div class="page-title-subtitle">Articles in the category <strong>{{ category_name }}</strong></div>
2018-12-15 05:52:02 +00:00
</h1>