{% if include.limit %} {% assign limit = include.limit %} {% else %} {% assign limit = posts.size %} {% endif %} {% if include.date_field %} {% assign date_field = include.date_field %} {% else %} {% assign date_field = 'date' %} {% endif %} {% for post in posts limit:limit %} {% capture this_year %}{{ post[date_field]| date: "%Y" }}{% endcapture %} {% capture this_month %}{{ post[date_field] | date: "%B" }}{% endcapture %} {% capture this_day %}{{ post[date_field] | date: "%d" }}{% endcapture %} {% capture next_year %}{{ post.previous[date_field] | date: "%Y" }}{% endcapture %} {% capture next_month %}{{ post.previous[date_field] | date: "%B" }}{% endcapture %} {% assign post_id = post.title | slugify %} {% if post.url %} {% assign url = post.url | relative_url %} {% assign first_url_letter = post.url | slice: 0 %} {% if post.url contains site.url or first_url_letter == "/" %} {% assign is_internal = true %} {% endif %} {% else %} {% assign url = "#" | append: post_id %} {% assign is_internal = true %} {% endif %} {% if forloop.first %} {% comment %}

{{this_year}}

{{ this_month }}

{% endcomment %}
{% endif %}
{% if include.date!=false %}
{{ post[date_field] | date: "%e" }} {{ post[date_field] | date: "%b" }}
{% endif %} {% if include.thumbnail and post.image.size > 1 %}
{% endif %}
{% if include.share_buttons %} {% include share-links.html page=post %} {% endif %} {% if post.authors %} {% for a in post.authors %} {% if a.url %}{{ a.name }}{% else %}{{a.name}}{% endif %}{% if forloop.last == false %},{% endif %} {% endfor %} {%endif%} {% if include.summary!=false %}
{% if post.summary %}

{{ post.summary }}

{% elsif post.excerpt %}

{{ post.excerpt }}

{% elsif post.description %}
{{ post.description | truncatewords : 15 | liquify | markdownify }}
{% endif %}
{% endif %}
{% if post.image.size > 0 and include.thumbnail!=true %} {% endif %}
{% if post.categories.size > 0 %} Categories: {% for c in post.categories %} {{ c }}{% if forloop.last == false %},{% endif %} {% endfor %} {% endif %}
{% if forloop.last %}
{% else %} {% if this_year != next_year %}
{% comment %}

{{next_year}}

{{ next_month }}

{% endcomment %}
{% else %} {% if this_month != next_month %}
{% comment %}

{{ next_month }}

{% endcomment %}
{% endif %} {% endif %} {% endif %} {% endfor %}