Revert back to checking if tags includes articles for blog nav

This commit is contained in:
Leilukin 2024-04-19 06:42:31 +08:00 committed by Helen Chong
parent fafab02223
commit 6d5c60cc65

View File

@ -52,7 +52,7 @@ layout: main/base
</div> </div>
{% endif %} {% 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" %} {% include "main/content-nav.njk" %}
{% endif %} {% endif %}
</div> </div>