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:
 8  priority: 0.9
 9---
10<ul class="list-posts">
11    {% for post in site.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</ul>