jekyll 在一页上进行多页分页
jekyll Multiple pagination on one page
大家好,我是 github、jekyll 和 ruby 的新手,也许这个问题已经得到解答,但作为新手,我很难解决这个问题。
我正在尝试将多个分页放在一个页面上,即说我有两个
作者在博客上发布他们的内容,所以我为他们每个人创建了一个分区,并希望为他们每个人分页 individually.So 当前代码是这样的:
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
{% for post in paginator.posts %}
{% if post.author contains "NAME OF AUTHOR 1" %}
<div class="post-preview">
<a href="{{ post.url }}">
<h2 class="post-title">
{{ post.title }}
</h2>
<h3 class="post-subtitle">
{{ post.description }}
</h3>
</a>
<p class="post-meta">Posted by <a href="#">{{ post.author }}</a> {{ post.date | date_to_string }}</p>
</div>
<hr>
{% endif %}
{% endfor %}
<!-- Pager -->
{% if paginator.total_pages > 1 %}
<ul class="pager">
{% if paginator.previous_page %}
<li class="previous">
<a href="{{ paginator.previous_page_path | prepend: site.url | replace: '//', '/' }}">← Newer Posts</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="next">
<a href="{{ paginator.next_page_path | prepend: site.url | replace: '//', '/' }}">Older Posts →</a>
</li>
{% endif %}
</ul>
{% endif %}
</div>
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
{% for post in paginator.posts %}
{% if post.author contains "NAME OF AUTHOR2" %}
<div class="post-preview">
<a href="{{ post.url | prepend: site.url }}">
<h2 class="post-title">
{{ post.title }}
</h2>
<h3 class="post-subtitle">
{{ post.description }}
</h3>
</a>
<p class="post-meta">Posted by <a href="#">{{ post.author }}</a> {{ post.date | date_to_string }}</p>
</div>
<hr>
{% endif %}
{% endfor %}
<!-- Pager -->
{% if paginator.total_pages > 1 %}
<ul class="pager">
{% if paginator.previous_page %}
<li class="previous">
<a href="{{ paginator.previous_page_path | prepend: site.url | replace: '//', '/' }}">← Newer Posts</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="next">
<a href="{{ paginator.next_page_path | prepend: site.url | replace: '//', '/' }}">Older Posts →</a>
</li>
{% endif %}
</ul>
{% endif %}
</div>
同样在_config.yml下paginate设置为3.
我已经将 jekyll 与 bootstrap 一起使用(如果我正确的话不是 jekyll-bootstrap)并且遵循了一个非常简单的教程,文件结构也非常简单。
感谢您的帮助,我在发布之前阅读了很多文档和很多帖子(总是搞砸了),所以感谢大家。
此外,
该博客位于 http://neorblog.in and github repositories at https://github.com/neortls007idev/Blog
此外,当前未按照上述代码提交回购协议。
分页适用于所有帖子。 posts where author == NeoR
.
不能有分页
您仍然有创建 generator plugin 的解决方案。是的,出于安全原因,github 页面不接受外国插件。
但是,简单地推送到 github 并不是唯一可用的工作流程。你可以试试 .
大家好,我是 github、jekyll 和 ruby 的新手,也许这个问题已经得到解答,但作为新手,我很难解决这个问题。
我正在尝试将多个分页放在一个页面上,即说我有两个 作者在博客上发布他们的内容,所以我为他们每个人创建了一个分区,并希望为他们每个人分页 individually.So 当前代码是这样的:
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
{% for post in paginator.posts %}
{% if post.author contains "NAME OF AUTHOR 1" %}
<div class="post-preview">
<a href="{{ post.url }}">
<h2 class="post-title">
{{ post.title }}
</h2>
<h3 class="post-subtitle">
{{ post.description }}
</h3>
</a>
<p class="post-meta">Posted by <a href="#">{{ post.author }}</a> {{ post.date | date_to_string }}</p>
</div>
<hr>
{% endif %}
{% endfor %}
<!-- Pager -->
{% if paginator.total_pages > 1 %}
<ul class="pager">
{% if paginator.previous_page %}
<li class="previous">
<a href="{{ paginator.previous_page_path | prepend: site.url | replace: '//', '/' }}">← Newer Posts</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="next">
<a href="{{ paginator.next_page_path | prepend: site.url | replace: '//', '/' }}">Older Posts →</a>
</li>
{% endif %}
</ul>
{% endif %}
</div>
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
{% for post in paginator.posts %}
{% if post.author contains "NAME OF AUTHOR2" %}
<div class="post-preview">
<a href="{{ post.url | prepend: site.url }}">
<h2 class="post-title">
{{ post.title }}
</h2>
<h3 class="post-subtitle">
{{ post.description }}
</h3>
</a>
<p class="post-meta">Posted by <a href="#">{{ post.author }}</a> {{ post.date | date_to_string }}</p>
</div>
<hr>
{% endif %}
{% endfor %}
<!-- Pager -->
{% if paginator.total_pages > 1 %}
<ul class="pager">
{% if paginator.previous_page %}
<li class="previous">
<a href="{{ paginator.previous_page_path | prepend: site.url | replace: '//', '/' }}">← Newer Posts</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="next">
<a href="{{ paginator.next_page_path | prepend: site.url | replace: '//', '/' }}">Older Posts →</a>
</li>
{% endif %}
</ul>
{% endif %}
</div>
同样在_config.yml下paginate设置为3.
我已经将 jekyll 与 bootstrap 一起使用(如果我正确的话不是 jekyll-bootstrap)并且遵循了一个非常简单的教程,文件结构也非常简单。
感谢您的帮助,我在发布之前阅读了很多文档和很多帖子(总是搞砸了),所以感谢大家。
此外, 该博客位于 http://neorblog.in and github repositories at https://github.com/neortls007idev/Blog
此外,当前未按照上述代码提交回购协议。
分页适用于所有帖子。 posts where author == NeoR
.
您仍然有创建 generator plugin 的解决方案。是的,出于安全原因,github 页面不接受外国插件。
但是,简单地推送到 github 并不是唯一可用的工作流程。你可以试试