Fix not check `juice_exclude_menu` nullable bug. Close #18

pull/21/head
Folyd 1 year ago
parent a0514f7f2a
commit ba1d0d1641

@ -9,7 +9,7 @@
<nav>
{% for page in section.pages %}
{% if config.extra.juice_exclude_menu is not containing(page.title) %}
{% if config.extra.juice_exclude_menu and config.extra.juice_exclude_menu is not containing(page.title) %}
<a class="nav-item subtitle-text" href="{{ page.permalink | safe }}">{{ page.title }}</a>
{% endif %}
{% endfor %}

Loading…
Cancel
Save