{% comment %} Paginated index of published posts. Page links carry ``page-`` so two list plugins on one page paginate independently, and preserve any other query parameters already on the URL. {% endcomment %}
{% for post in posts %}

{% if post.get_absolute_url %} {{ post.title }} {% else %} {{ post.title }} {% endif %}

{{ post.published_at|date:"DATE_FORMAT" }}

{% if post.excerpt %}
{{ post.excerpt }}
{% endif %}
{% empty %}
No posts.
{% endfor %} {% if page_obj and page_obj.has_other_pages %} {% endif %}