--- layout: default home: true --- {% for post in paginator.posts %} {% assign minutes = post.content | number_of_words | divided_by: 180 %} {% if minutes == 0 %} {% assign read-time = site.var_less_than_a_minute_read %} {% else %} {% assign read-time = minutes | append: " " | append: site.var_min_read %} {% endif %}

{{ post.title }}

{% if site.display-author-front-page %} {% if post.author.name %} {{ post.author.name }} • {% else %} {% if site.author.name %} {{ site.author.name }} • {% endif %} {% endif %} {% endif %} {{ post.date | date: site.date_format }} • {{ read-time }}

{{ post.content | strip_html | truncatewords:140 }}

{{ site.var_read }} →
{% for tag in post.tags %} {{ tag }} {% endfor %}
{% endfor %} {% if paginator.previous_page or paginator.next_page %} {% include pagination.html %} {% endif %}