我的_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 %}