{% extends "blog/base.html" %} {% block title %}{{ user.username }}'s Posts{% endblock %} {% block body %}

Posts By {{ user.username }}

{% for post in posts %}

{{ post.title }}

{{ post.text | truncate(500) | safe }} Read More
{% endfor %}
Recent Posts
Popular Tags
{% endblock %}