Skip to content
Snippets Groups Projects
paginated_left_col.html 1.54 KiB
Newer Older
---
layout: default
---

Jacek Lebioda's avatar
Jacek Lebioda committed
<article class="body-wrapper margin-wrapper">

    <div id="left-column">
Jacek Lebioda's avatar
Jacek Lebioda committed
        <h2>{{ page.section }}</h2>
        <ul>
        {% for link in page.pages %}
Jacek Lebioda's avatar
Jacek Lebioda committed
            <li>
              <a href="{{ link.href | relative_url }}"
                class="{% if link.active %}active {% endif %}{% if link.smaller %}smaller {% endif %}">
                {{ link.title }}
              </a>
            </li>
Jacek Lebioda's avatar
Jacek Lebioda committed
        {% endfor %}
        </ul>
    <div id="right-column">
        <header>
            <h1>
                ELIXIR.LU news
            </h1>
            <hr />
        </header>

        {% for post in paginator.posts %}
        <div class="post">
Jacek Lebioda's avatar
Jacek Lebioda committed
          <a class="post-title" href="{{ post.url | relative_url }}">{{ post.title }}</a>
          <span class="post-date">Published on: {{ post.date | date: '%B %d, %Y' }}</span>

          <div class="content">
            {{ post.content | strip_html | truncatewords: 52 }}
          </div>
        </div>
        {% endfor %}

        <div class="pagination">
          {% if paginator.previous_page %}
Jacek Lebioda's avatar
Jacek Lebioda committed
            <a href="{{ paginator.previous_page_path | relative_url }}" class="previous">
              Previous
            </a>
          {% endif %}

          <span class="page_number ">
            Page: {{ paginator.page }} of {{ paginator.total_pages }}
          </span>

          {% if paginator.next_page %}
Jacek Lebioda's avatar
Jacek Lebioda committed
            <a href="{{ paginator.next_page_path | relative_url }}" class="next">Next</a>
          {% endif %}
        </div>
    </div>
</article>