{% extends 'django_cowhite_blog/base.html' %} {% load humanize %} {% block meta_title %} Blog {% endblock %} {% block content %}
Blog
{% for blog in blog_posts %}
{{ blog.title }}
Posted by {{ blog.author.first_name }} {{ blog.created_at|naturaltime }}
{{ blog.seo_description|safe }}
Read more
{% endfor %} {% endblock %}