---
layout: default
title: blog
pagination:
enabled: true
collection: posts
permalink: /page/:num/
per_page: 5
sort_field: date
sort_reverse: true
trail:
before: 1 # The number of links before the current page
after: 3 # The number of links after the current page
---
{% for post in paginator.posts %}
{% assign read_time = post.content | number_of_words | divided_by: 180 | plus: 1 %}
{% assign year = post.date | date: "%Y" %}
{% assign tags = post.tags | join: "" %}
{% assign categories = post.categories | join: "" %}
-
{{ post.description }}
{{read_time}} min read ·
{{ post.date | date: '%B %-d, %Y' }}
{{ year }}
{% if tags != "" %}
·
{% for tag in post.tags %}
{{ tag }}
{% endfor %}
{% endif %}
{% if categories != "" %}
·
{% for category in post.categories %}
{{ category }}
{% endfor %}
{% endif %}
{% endfor %}
{% include pagination.html %}