Skip to content
Snippets Groups Projects
pagination.html 5.35 KiB
---
title: HIFIS
---

{% include top.html %}

<body>

    {% include header.html %}

    <main>
        {% include title_image.html%}

        <section>

            {% if paginator.total_pages > 1 %}
            <nav class="page-navigation grid-container">
                <div class="pagination-container grid-item">
                    {% if paginator.previous_page %}
                        <span>
                            <a href="{{ paginator.previous_page_path | relative_url }}">
                                <i class="fas fa-backward"></i>
                            </a>
                        </span>
                    {% endif %}

                    {% for page in (1..paginator.total_pages) %}
                    {% if page == paginator.page %}
                    <span> {{ page }} </span>
                    {% elsif page == 1 %}
                        <span>
                            <a href="{{ 'news/' | relative_url }}"> {{ page }} </a>
                        </span>
                    {% else %}
                        <span>
                            <a href="{{ site.paginate_path
                                        | relative_url
                                        | replace: ':num', page }}">
                                {{ page }}
                            </a>
                        </span>
                    {% endif %}
                    {% endfor %}

                    {% if paginator.next_page %}
                    <span>
                        <a href="{{ paginator.next_page_path | relative_url }}">
                            <i class="fas fa-forward"></i>
                        </a>
                    </span>
                    {% endif %}
                </div>
                <div class="rss-posts-container grid-item">
                    <a class="rss-posts-button" href="{{ '/feed/news.xml' | relative_url }}"
                       title="subscribe to feed"
                       type="application/atom+xml"
                       download>
                        <i class="fas fa-rss"></i>
                    </a>
                </div>
            </nav>
            {% endif %}

            {% for post in paginator.posts %}
            <article class="list-entry">
                <div class="preview">
                    <h1>
                        <a href="{{ post.url | relative_url }}">
                            {{ post.title }}
                        </a>
                    </h1>

                {% if post.excerpt_separator != '' %}
                    <div class="excerpt-content">
                        {{ post.excerpt }}
                    </div>
                    {% else %}
                    <div class="no-excerpt-content">
                        {{ post.content }}
                    </div>
                {% endif %}
                    <a href="{{ post.url | relative_url }}" >
                        <span>&nbsp;more…&nbsp;</span>
                    </a>
                </div>

            <div class="digest-container">
            {% include blog_post/metadata.html
                authors = post.authors
                date = post.date
                categories = post.categories
                tags = post.tags %}
            </div>

            </article>
            {% endfor %}
            
            
            {% if paginator.total_pages > 1 %}
            <nav class="page-navigation grid-container">
                <div class="pagination-container grid-item">
                    {% if paginator.previous_page %}
                        <span>
                            <a href="{{ paginator.previous_page_path | relative_url }}">
                                <i class="fas fa-backward"></i>
                            </a>
                        </span>
                    {% endif %}

                    {% for page in (1..paginator.total_pages) %}
                    {% if page == paginator.page %}
                    <span> {{ page }} </span>
                    {% elsif page == 1 %}
                        <span>
                            <a href="{{ 'news/' | relative_url }}"> {{ page }} </a>
                        </span>
                    {% else %}
                        <span>
                            <a href="{{ site.paginate_path
                                        | relative_url
                                        | replace: ':num', page }}">
                                {{ page }}
                            </a>
                        </span>
                    {% endif %}
                    {% endfor %}

                    {% if paginator.next_page %}
                    <span>
                        <a href="{{ paginator.next_page_path | relative_url }}">
                            <i class="fas fa-forward"></i>
                        </a>
                    </span>
                    {% endif %}
                </div>
                <div class="rss-posts-container grid-item">
                    <a class="rss-posts-button" href="{{ '/feed/news.xml' | relative_url }}"
                       title="subscribe to feed"
                       type="application/atom+xml"
                       download>
                        <i class="fas fa-rss"></i>
                    </a>
                </div>
            </nav>
            {% endif %}
            

        </section>
    </main>

    {% include footer.html %}

</body>

</html>