--- layout: default ---
Articles
{% for post in paginator.posts %} {% include post-list.html %} {% endfor %}
{% if paginator.total_pages > 1 %} {% if paginator.previous_page %} Prev {% endif %} {% for page in (1..paginator.total_pages) %} {% if page == paginator.page %} {{ page }} {% elsif page == 1 %} {{ page }} {% else %} {{ page }} {% endif %} {% endfor %} {% if paginator.next_page %} Next {% endif %} {% endif %}
{% for category in site.categories %}
{% for posts in category %} {% for post in posts %} {% if post.url %} {% include post-list.html %} {% endif %} {% endfor %} {% endfor %}
{% endfor %}
Categories
All {{ site.posts | size }} {% assign sorted_categories = site.categories | sort %} {% for category in sorted_categories %} {% assign cat_name = category | first %} {{ cat_name }} {{ category | last | size }} {% endfor %}