{% load markup %} {% extends "base.html" %} {% block content %} {% for post in posts %}

{{ post.title }}

{{ post.get_summary|textile }}

{{ post.date }}

tags: {{ post.get_tags|safe }}

{% if is_user_auth %}

Edit

{% endif %}
{% endfor %} {% endblock %}