{% if posts %}
{% for post in posts %}
{{ post.created_at.strftime('%B %d, %Y') }}

{{ post.title }}

{{ post.excerpt or post.content[:150] }}{% if post.content|length > 150 %}…{% endif %}

{{ post.author.username[0].upper() }}
{{ post.author.username }}
Read more
{% endfor %}
{% else %}

No posts yet

Check back soon for new content!

{% endif %}