因此,我設置了一個Jekyll頁面,我創建了幾個演示文章,在它們之間找到了一個導航工作,並根據我的喜好對它進行了設置,然後在根目錄中找到了'jekyll'。Jekyll沒有找到帖子
這在我的根中生成了一個_site文件夾。真棒。
但是,當我在瀏覽器中打開此文件夾,並嘗試在文章之間導航時,它會嘗試去文件:///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/
以任何提示在這裏! 感謝