{% extends 'blog.html' %} {% load next_prev %} {% block extra_headers %}{% endblock %} {% block title %}The site with the LAMP Blog {% if page %} Page {{ page }} {% endif %}{% endblock %} {% block content %} {% for post in posts %}

{{ post.title }}

{% autoescape off %} {{ post.content }} {% endautoescape %}
{{ post.published_at }} {% if post.tags %} » Tagged: {% for tag in post.tags %} {{ tag }} {% if not forloop.last %}, {% endif %} {% endfor %} {% endif %}
{% endfor %} {% endblock %}