{% extends "simpleblog/base.html" %} {% block content %} {% for obj in article_qs %}
{% if obj.img %} {% endif %}

{{obj.title}}

{{obj.created_at}} | {% if obj.tags.all %} {% for tag in obj.tags.all %} {{tag.name}}  {% endfor %} | {% endif %} {{obj.get_comments.count}} comments {% if user.is_authenticated %} | edit {% endif %}

{{obj.description|linebreaksbr}}

Read more

{% endfor %} {% endblock content %}