{% extends 'core/base.html' %} {% load static %} {% block title %}Blog{% endblock %} {% block content %} {% for post in category.get_posts.all %}

{{post.published|date:"SHORT_DATE_FORMAT"}} {{post.title}}

{{post.content|linebreaks}}

Publicado por {{post.author}} en {% for category in post.categories.all %} {{category.name}}{% if not forloop.last %},{% endif %} {% endfor %}

{% endfor %} {% endblock %}