{% extends "base.html" %} {% block title %}Blog - FastDjango{% endblock %} {% block content %}

Latest Posts

{% for post in posts %}
{% if post.featured %} Featured {% endif %}

{{ post.title }}

{{ post.excerpt or post.content[:200] }}...

{% if post.author %} By {{ post.author.username }} {% endif %} {% if post.category %} {{ post.category.name }} {% endif %}
{{ post.views }} views {{ post.created_at|datetime('%b %d, %Y') }}
{% else %}

No posts yet. Check back later!

{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}