微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ruby – Jekyll数组包含检查

我的_config.yaml中有一个数组.让我们说吧

exclude_pages: [ "/404.html","/search.html","/atom.xml","/RSS.xml","/index.html","/sitemap.txt" ]

我想要做的是在site.pages的页面循环中排除这些页面.以下是我正在尝试的代码.

{% for entry in site.pages %}
    {% if site.exclude_pages contains entry.url %}
        <!-- Do nothing -->
    {% else %}
        <!-- Show Page -->
    {% endif %}
{% endfor %}

但不知怎的,它没有发生.此代码中的所有页面都被忽略.

知道我在这里缺少什么吗?

解决方法

试试:

exclude_pages: [ "index.html","anyfolder/index.html" ]

然后使用entry.path循环而不是entry.url:

{% for entry in site.pages %}
    {% if site.exclude_pages contains entry.path %}
        <!-- Do nothing -->
    {% else %}
        <!-- Show Page -->
    {% endif %}
{% endfor %}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐