如何在jekyll中使用变量设置永久链接?

时间:2019-03-06 05:36:34

标签: jekyll liquid permalinks

我正在尝试设置jekyll,以便它会自动为新帖子创建永久链接,但无法正常工作。

我所做的是像这样在_config.yml中设置变量:

permalink: /:title/

然后,在主页上的帖子预览循环中,我创建了这样的链接:

<a href="{{ post.permalink }}">Read More</a>

期望输出类似。

<a href="/I-am-the-title-of-this-post">Read More</a>

相反,我得到这个:

<a href="/:title/">Read More</a>

如果我单击该按钮,则会出现404 Not Found错误。

我在做什么错了?

有关更多信息,here是github仓库。

谢谢!

Matteo

1 个答案:

答案 0 :(得分:0)

正如@David Jaquel所建议的那样,我通过使用来解决了

{{ site.baseurl }}{{ post.url }}