我正在使用包含存储在包含目录中的以下公式生成页面速率“ Indexmod”
{% assign number_of_words = content | strip_html | number_of_words %}
{% assign social = page.facebook | plus: page.instagram | plus:
page.youtube | plus: page.vimeo | plus: page.vkontakte | plus:
page.twitter | plus: page.tumblr | plus: page.youtube %}
{% assign age = site.time | date: "%Y" | minus: page.birth %}
{% assign index = age | times: social | divided_by: 1000000.0 %}
{% assign indexmod = index | times: number_of_words | divided_by: 100 %}
{{ indexmod | round: 2 }}
然后,我使用以下方法在网站主页上的每个页面主题下插入“ Indexmod”费率值:
{% assign mypages = site.pages | sort: "order" %} {% for page in
mypages %}
{% unless page.exclude %}
<a href="{{page.url|absolute_url | remove: "/assets/css/style.css" |
remove: "/redirects.json" | remove: "/sitemap.xml" | remove:
"/robots.txt" | remove: "/feed.xml"}}"> {{ page.shortname }} <span
class="rate">{% include indexmod.html %}</a></span> <span class="rex">
| </span>
{% endunless %}
{% endfor %}
结果是,我看到不需要的扩展名为.css .json .xml .txt的文件作为页面
因此,我正在尝试使用排除行中的许多技巧,但不适用于这5个文件。
我的问题是如何从site.pages中排除.css .json .xml .txt。预先感谢您的关注!
答案 0 :(得分:0)
我通过从_config.yml中删除这些行来几乎解决了问题
宝石:
-jekyll-sitemap
-怪诞的提法
-表情符号
-jekyll-redirect-from
-jekyll-feed