{% extends "blog/base.html" %} {% load blog_tags %} {% block title %}My Blog{% endblock %} {% block content %}
Tags: {% for tag in post.tags.all %} {{ tag.name }} {% if not forloop.last %},{% endif %} {% endfor %}
Published {{ post.published }} by {{ post.author }}