1---
 2layout: blog
 3title: "~/"
 4subtitle: "You are, quite obviously, home."
 5description: "Ramblings from a random GNU/Linux user, sysadmin, and professional multi-instrumentalist"
 6cover: /assets/pages/me.png
 7sitemap:
 8priority: 0.9
 9---
10<main id="scroll" class="scroll" itemscope="itemscope" itemtype="http://schema.org/Blog">
11<ul class="list-posts">
12    {% for post in paginator.posts %}
13    <li class="post-teaser">
14        <a href="{{ post.url | prepend: site.baseurl }}">
15            <span class="post-teaser-title">{{ post.title }}</span>
16            <span class="post-teaser-date">{{ post.date | date: "%d %B %Y" }}</span>
17            <p>{{ post.description }}</p>
18        </a>
19        <div class="tags">
20            {% assign words = post.content | number_of_words %} {% if words
21                < 360 %} <a class="meta">Read time: <b>1 minute</b></a>
22            {% else %}
23                <a class="meta">Read time: <b>{{ words | divided_by:184 }} minutes</b></a>
24            {% endif %}
25            {% for tag in post.tags %}
26                <a  class="meta" href="{{ site.baseurl }}/tags/#{{tag | slugify }}">{{ tag }}</a>
27            {% endfor %}
28        </div>
29    </li>
30    {% endfor %}
31</main>
32    <div class="pagination">
33        {% if paginator.previous_page %}
34            <a href="{{ paginator.previous_page_path }}#scroll" class="previous"><i class="fa fa-toggle-left"></i></a>
35        {% else %}
36        {% endif %}
37            <span class="page-num">Page {{ paginator.page }}/{{ paginator.total_pages }}</span>
38        {% if paginator.next_page %}
39            <a href="{{ paginator.next_page_path }}#scroll" class="next"><i class="fa fa-toggle-right"></i></a>
40        {% else %}
41        {% endif %}
42    </div>
43</ul>