{% extends "base.html" %} {% block title %}{% if current_page > 1 %}Page {{ current_page }} | {% endif %}{{ site.config.title }}{% endblock %} {% block content %}

{% if current_page > 1 %}Posts - Page {{ current_page }}{% else %}Posts{% endif %}

{% for post in posts %}
{% if post.reading_time > 0 %} · {{ post.reading_time }} min read {% endif %}

{{ post.title }}

{% if post.excerpt %}

{{ post.excerpt }}

{% endif %} {% if post.tags | length > 0 %}
{% for tag in post.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% if total_pages > 1 %} {% endif %}
{% endblock %}