{% extends "base.html" %} {% block content %}
{% for post in posts %}

{{ post.title }}

{% if post.author %}

by {{ post.author }}

{% endif %}

{{ post.excerpt|safe|default_if_none:'' }}

Read more
{% endfor %}
{% if is_paginated %} {% include "djangocms_hubspot_blog/partials/pagination.html" %} {% endif %} {% endblock %}