---
layout: default
---
{% if site.data.menu and site.paginate and site.paginate_path and paginator.page > 1 %}
  {% include menu.html %}
{% elsif site.paginate and site.paginate_path and paginator.page > 1 %}
  {% include back-link.html %}
{% else %}
  
{% endif %}
  
    {% if site.paginate and site.paginate_path and paginator.page > 1 %}
      Page {{ paginator.page }}
    {% else %}
      Contents
    {% endif %}
  
  {% if site.paginate and site.paginate_path %}
    
    
      {% for post in paginator.posts %}
        {% include post-list-item.html %}
      {% endfor %}
    
{% if paginator.total_pages > 1 %}
      
    {% endif %}
  {% else %}
      {% for post in site.posts %}
        {% include post-list-item.html %}
      {% endfor %}
    
{% endif %}