diff --git a/blog/index.html b/blog/index.html index 4b5d4d5..c6f13ed 100644 --- a/blog/index.html +++ b/blog/index.html @@ -4,12 +4,18 @@ title: Blog section_id: blog --- -
- {% for post in paginator.posts %} + +
+ {% for post in paginator.posts %} {% assign mod = forloop.index | modulo: 2 %} {% if mod == 1 %} - -
+
+ {% if post.images %} + post + {% endif %} +
+

{{post.title}}

+

{% if post.categories != empty %} {% for cat in post.categories %} @@ -21,40 +27,30 @@ section_id: blog / {% endif %} -

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

-

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

-
- -
-
-
-

{{post.title}}

+ {{ post.date | date: "%B %d, %Y" }} +

{{post.excerpt}}

Read more

-
-
- -
-
- {% if post.images %} - post - {% endif %}
{% endif %} {% endfor %}
- -
+
{% for post in paginator.posts %} {% assign mod = forloop.index | modulo: 2 %} - {% if mod == 1 %} - -
+ {% if mod == 0 %} +
+ {% if post.images %} + post + {% endif %} +
+

{{post.title}}

+

{% if post.categories != empty %} {% for cat in post.categories %} - {{cat | capitalize }} + {{cat | capitalize}} {% unless forloop.last %} , {% endunless %} @@ -62,28 +58,12 @@ section_id: blog / {% endif %} -

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

-

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

-
- -
-
-
-

{{post.title}}

+ {{ post.date | date: "%B %d, %Y" }} +

{{post.excerpt}}

Read more

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