如果我包含这样的文件:
{% include_relative _layouts/tile.html %}
在我的index.html文件中,如何获取tile.html以使用tile.md的主要内容而不是index.md?
答案 0 :(得分:1)
最好在配置中或 data 文件中包含 title 。
但是在这种情况下,如果您想访问任何帖子/页面的前题,可以通过将其所在位置指定为以下路径来实现:
{%assign title_post = site.posts | where:"path","_posts/title.md" |first%}
{{title_post.title}}
或者如果它是页面(看起来是页面),请使用site.pages
而不是site.posts
。