0

大家好,我是 github、jekyll 和 ruby​​ 的新手,也许这个问题已经得到解答,但作为一个新手,我很难解决这个问题。

我试图在一个页面上放置多个分页,也就是说我有两个作者在博客上发布他们的内容,所以我为他们每个人创建了一个部门,并希望为每个人单独分页。所以当前的代码是这样的:

<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: '//', '/' }}">&larr; Newer Posts</a>
                </li>
                {% endif %}
                {% if paginator.next_page %}
                <li class="next">
                    <a href="{{ paginator.next_page_path | prepend: site.url | replace: '//', '/' }}">Older Posts &rarr;</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: '//', '/' }}">&larr; Newer Posts</a>
                </li>
                {% endif %}
                {% if paginator.next_page %}
                <li class="next">
                    <a href="{{ paginator.next_page_path | prepend: site.url | replace: '//', '/' }}">Older Posts &rarr;</a>
                </li>
                {% endif %}
            </ul>
            {% endif %}
        </div>

同样在 _config.yml 下分页设置为 3。

我已经将 jekyll 与 bootstrap 一起使用(如果正确,不是 jekyll-bootstrap)并遵循了一个非常简单的教程,文件结构也非常简单。

感谢您的帮助,我在发布之前阅读了许多文档和许多帖子(总是会搞砸),所以感谢大家。

此外,该博客位于http://neorblog.in和 github 存储库位于https://github.com/neortls007idev/Blog

此外,当前未按照上述代码提交 repo。

4

1 回答 1

1

分页适用于所有帖子。您不能为posts where author == NeoR.

您仍然有创建生成器插件的解决方案。是的,出于安全原因,github pages 不接受外国插件。

但是,简单地推送到 github 并不是唯一可用的工作流。你可以试试这个

于 2016-07-08T11:08:23.237 回答