{% extends "base.html" %} {% block title %}Posts - {{ site.title }}{% endblock %} {% block content %}

Posts

{% if posts | length > 0 %}
{% for post in posts %}

{{ post.title }}

{% if post.excerpt %}

{{ post.excerpt | strip_md }}

{% endif %} {% if post.tags | length > 0 %} {% endif %}
{% endfor %}
{% if total_pages is defined and total_pages > 1 %} {% endif %} {% else %}

No posts published yet.

Start creating content in the admin panel.

{% endif %} {% endblock %}