---
layout: default
title: "The high quality, completely customizable, performant and 100% free blog template for Jekyll"
description: "Chalk uses all the best tools and merges them into one premium blogging theme."
---
{% for post in paginator.posts %}
-
{{ post.title }}
{{ post.description }}
{{ post.date | date: "%B %-d, %Y" }}
-
{% capture words %}
{{ post.content | number_of_words }}
{% endcapture %}
{% unless words contains "-" %}
{{ words | plus: 250 | divided_by: 250 | append: " minute read" }}
{% endunless %}
-
{% for tag in post.tags %}
{{ tag }}
{% endfor %}
{% endfor %}
{% if paginator.total_pages > 1 %}
-
{% if paginator.previous_page %}
Newer posts
{% endif %}
{% if paginator.next_page %}
Older posts
{% endif %}
{% endif %}