---
title: Main page
layout: main
groups:
- navbar
navbar_link: Main page
---
{% if site.posts.size == 0 %}
Sorry, no posts have been added 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 common/pagination.html %}
{% endif %}