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

Posts

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

{{ post.title }}

{% if post.body_html %}

{{ post.body_html | striptags | truncate(length=200) }}

{% elif post.excerpt %}

{{ post.excerpt | striptags | truncate(length=200) }}

{% 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 %}