Revert back to checking if tags includes articles for blog nav

This commit is contained in:
Helen Chong 2024-04-19 06:42:31 +08:00
parent ee430ccbd4
commit f562940708
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ layout: main/base
</div>
{% endif %}
{% if isArticle or title === "Articles" or tags and tags.includes("blog pages") %}
{% if tags.includes("articles") or title === "Articles" or tags and tags.includes("blog pages") %}
{% include "main/content-nav.njk" %}
{% endif %}
</div>