{% assign iter = "first" %} {% for post in paginator.posts %} {% if iter == "first" %} {% if paginator.page == 1 %} {% assign first_page_first_post = true %}

{{post.title}} {% unless post.subtitle == null %} - {{ post.subtitle }}{% endunless %}

Image by {{page.image.author}} on {{page.image.source}} {% assign postcontent = post.content %}{% comment %}TODO: improve this as a include parameter{% endcomment %} {% capture readingtime %}{% include themes/jmblog-theme/components/reading-time.html %}{% endcapture %} {% if readingtime.size > 1 %} {{ readingtime | strip }} {% endif %}
{% for tag in post.tags %} #{{ tag }} {% endfor %}

{% endif %}
{% if paginator.page == 1 %}

Recent Articles

{% endif %}
{% endif %} {% unless first_page_first_post %} {% include themes/jmblog-theme/components/article_highlight.html post=post %} {% endunless %} {% assign iter = null %} {% assign first_page_first_post = false %} {% endfor %}
{% include themes/jmblog-theme/components/pagination_links.html %}

The Author

{% include themes/jmblog-theme/components/author.html sidebar=true %}