{% extends "base.html" %} {% block title %}Blog ยท {{ SITE_NAME }}{% endblock %} {% block content %}

Blog

{% for post in posts %}

{{ post.title }}

{% if post.published_at %}{{ post.published_at|date:"F j, Y" }}{% endif %}

{{ post.excerpt|default:post.body|truncatewords:40 }}

{% empty %}

No posts yet.

{% endfor %}
{% endblock %}