{% extends 'base.html' %} {% load static i18n humanize %} {% load thumbnail %} {% block head %} {% endblock head %} {% block content %}

{% trans 'News' %}

{% trans 'Most Recent Posts' %}

{% include 'news/news_form_modal.html' %} {% include 'news/news_thread_modal.html' %}
    {% for news in news_list %} {% include 'news/news_single.html' with news=news %} {% endfor %}
{% if page_obj.has_next %} {% endif %}
{% endblock content %} {% block modal %} {% endblock modal %}