index.html

 1---
 2layout: blog
 3title: "~/"
 4subtitle: "You are, quite obviously, home."
 5description: "Ramblings from a random GNU/Linux user, sysadmin, and professional multi-instrumentalist"
 6cover: /me.png
 7sitemap:
 8priority: 0.9
 9---
10<ul class="list-posts">
11    {% for post in paginator.posts %}
12    <li class="post-teaser">
13        <a href="{{ post.url | prepend: site.baseurl }}">
14            <span class="post-teaser-title">{{ post.title }}</span>
15            <span class="post-teaser-date">{{ post.date | date: "%d %B %Y" }}</span>
16            <p>{{ post.description }}</p>
17        </a>
18    </li>
19    {% endfor %}
20    <div class="pagination">
21        {% if paginator.previous_page %}
22        <a href="{{ paginator.previous_page_path }}#scroll" class="previous"><i class="fa fa-toggle-left"></i></a>
23        {% else %} {% endif %}
24        <span class="page-num">Page {{ paginator.page }}/{{ paginator.total_pages }}</span>
25        {% if paginator.next_page %}
26            <a href="{{ paginator.next_page_path }}#scroll" class="next"><i class="fa fa-toggle-right"></i></a>
27        {% else %}
28        {% endif %}
29    </div>
30</ul>