Add content nav if tags includes articles

This commit is contained in:
Helen Chong 2024-04-19 06:33:21 +08:00
parent f49eab281b
commit 8a83a624d3
1 changed files with 1 additions and 1 deletions

View File

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