--- # blog page must be named index.html and in its own folder to support pagination # https://jekyllrb.com/docs/pagination/ layout: page title: Blog ---
{% if site.posts.size == 0 %}

Nothing published yet!

{% elsif site.paginate %} {% for post in paginator.posts %} {% include blog-post.html %} {% endfor %} {% if site.paginate %} {% include pagination.html%} {% endif %} {% else %} {% for post in site.posts %} {% include blog-post.html %} {% endfor %} {% endif %}