From 660a578487536fb6d24641155fe22302678b33fe Mon Sep 17 00:00:00 2001 From: rjzupkoii Date: Sun, 9 Feb 2025 13:14:28 -0500 Subject: [PATCH] Exclude publications from category-list, close #2820 --- _includes/page__taxonomy.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/page__taxonomy.html b/_includes/page__taxonomy.html index 5a0c39fc02727..3df2877fa2775 100644 --- a/_includes/page__taxonomy.html +++ b/_includes/page__taxonomy.html @@ -4,6 +4,6 @@ {% include tag-list.html %} {% endif %} -{% if site.category_archive.type and page.categories[0] %} +{% if site.category_archive.type and page.categories[0] and page.collection != 'publications' %} {% include category-list.html %} {% endif %} \ No newline at end of file