{% extends 'core/base.html' %} {% block title %}Blog - Django Demo Project{% endblock %} {% block content %}

Blog

{% if posts %}
{% for post in posts %}
{{ post.title }}

{{ post.content|truncatewords:30 }}

Published on {{ post.created_at|date:"F d, Y" }}
{% endfor %}
{% else %}

No blog posts yet

Blog posts will appear here once they're created in the admin panel.

Back to Home
{% endif %}
{% endblock %}