Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 Jekyll 用于博客/投资组合网站。我有几篇文章是投资组合条目,还有几篇是博客条目。
我可以使用投资组合条目帖子来构建投资组合页面(www.alexmarchant.com/portfolio),但 Jekyll 仍然为每个投资组合条目生成一个永久链接的单独页面。有什么办法可以关闭它吗?
我在帖子的 YAML front-matter 部分尝试了以下内容:
两者都不起作用。
我发现了一个hack来做你想做的事:当你将永久链接设置为一个已经存在的页面时,它不会被生成(原始页面会在那里),但它仍然可以作为帖子/页面实体使用在杰基尔。
因此,如果您在这样的 url: 处有一个投资组合的索引页面/portfolio/index.html,然后在您/_posts/的任何帖子中都会有任何在 YAML front matter: 中包含此内容的帖子permalink: /portfolio/index.html,那么这些页面将不会生成。
/portfolio/index.html
/_posts/
permalink: /portfolio/index.html