{% extends "board/base.html" %} {% load i18n %} {% block title %}News {{block.super}}{% endblock title %} {% block content %} {# navbar #}
 

News

 

 
{% for post in object_list %}

{{post.title}}

{% blocktranslate with created=post.created author=post.author %} by {{author}} at {% endblocktranslate %}

{{post.body|safe|linebreaks}}


{% endfor %}
 
{% endblock content %}