---
title: Main page
layout: main
group: "navigation"
navbar_link: Main page
---
{% if site.posts.size == 0 %}
Sorry, there're no posts yet.
But I've made quite a few plots which you might want to check out.
{% else %}
{% for post in paginator.posts %}
{{ post.title }}
{{ post.excerpt }}
Posted on {{ post.date | date_to_long_string }}
{% endfor %}
{% include pagination.html %}
{% endif %}