1
我今天晚上爲my website添加了分頁,我遇到了現在我已經破壞了整個網站的問題。發佈建設Jekyll博客文章頁面和編輯
我對文件使用標準的Jekyll目錄結構。對於我的網站,我希望索引頁面關於我,然後點擊/blog
頁面查看我的博客。所以我有index.md是通過主頁。然後我有一個頁面blog.html成爲博客頁面。我曾經使用{% for post in site.posts limit: 10 %}
工作,並根據最新文檔如何建議循環並打開,切換到{% for post in paginator.posts %}
。在我的_config.yml文件中,我有:
paginate: 10
paginate_path: "blog/page:num"
permalink: /blog/:year/:month/:day/:title.html
我希望分頁爲/blog/page2.html。我不確定我配置錯了什麼。這裏是我的整個blog.html頁面:
---
title: Blog
layout: default
permalink: /blog/index.html
---
{% for post in paginator.posts %}
<div class="row">
<div class="col-lg-12">
{% if post.layout contains "link" %}
<h4><a href="{{post.url}}"><i class="icon-link"></i> {{post.title}}</a></h4>
{% else %}
<h4><a href="{{post.url}}">{{post.title}}</a></h4>
{% endif %}
<small>{{post.date | date: "%m/%d/%Y"}}</small>
<div class="post-content-truncate">
{% if post.content contains "<!-- more -->" %}
{{ post.content | split:"<!-- more -->" | first % }}
<a href="{{post.url}}">Read full article...</a>
{% else %}
{{ post.content }}
{% endif %}
</div>
</div>
</div>
{% endfor %}
{% if paginator.total_pages > 1 %}
<div class="row">
<div class="col-lg-12">
<ul class="pagination">
{% if paginator.previous_page %}
<li><a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">« Prev</a></li>
{% else %}
<span>« Prev</span>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<li><em>{{ page }}</em></li>
{% elsif page == 1 %}
<li><a href="{{ '/index.html' | prepend: site.baseurl | replace: '//', '/' }}">{{ page }}</a></li>
{% else %}
<li><a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a></li>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<li><a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next »</a></li>
{% else %}
<li><span>Next »</span></li>
{% endif %}
</ul>
</div>
</div>
{% endif %}
任何想法,我要去哪裏錯了?