所以我设置了一个 Jekyll 页面,我创建了一些演示帖子,在它们之间进行导航并根据我的喜好对其进行样式设置,然后在根目录中使用“jekyll”。
这在我的根目录中生成了一个 _site 文件夹。惊人的。
但是当我在浏览器中打开此文件夹并尝试在帖子之间导航时,它会尝试转到 file:///2013/02/01/post-title.html 而不是实际位置,即 file:// /blablabla/_site/2013/02/01/post-title.html
我一直在查看 yml 文件中的永久链接选项,但我还没有找到可行的解决方案。
我用:
<a href="{{page.previous.url}}" title="Previous Post: {{page.previous.title}}">
{{page.previous.title}}</a>
在帖子之间导航,并且:
{% for post in site.posts limit: 5 %}
<a href="{{ post.url }}">{{ post.title }}</a>
{% endfor %}
从主页链接帖子。
从我的 config.yml:
baseurl: /
url: http://localhost:5000
source: .
destination: ./_site
permalink: /writing/
在这里采取任何提示!谢谢