--- layout: blog title: Blog section_id: blog --- {% for post in paginator.posts %}
{% assign mod = forloop.index | modulo: 2 %} {% if mod == 1 %}
{% if post.categories != empty %} {% for cat in post.categories %} {{cat | capitalize }} {% unless forloop.last %} , {% endunless %} {% endfor %} / {% endif %}

{{ post.date | date: "%d" }}

{{ post.date | date: "%B %Y" }}

{{post.title}}

{{post.excerpt}}

Read more

{% if post.images %} post {% endif %}
{% endif %}
{% endfor %}
{% for post in paginator.posts %}
{% assign mod = forloop.index | modulo: 2 %} {% if mod == 0 %}
{% if post.categories != empty %} {% for cat in post.categories %} {{cat | capitalize }} {% unless forloop.last %} , {% endunless %} {% endfor %} / {% endif %}

{{ post.date | date: "%d" }}

{{ post.date | date: "%B %Y" }}

{{post.title}}

{{post.excerpt}}

Read more

{% if post.images %} post {% endif %}
{% endif %}
{% endfor %}