{% extends 'layouts/public.html' %} {% load static %} {% block title %}Notícias{% endblock title %} {% block content %}

Notícias Recentes

{% if latest_news_list %} {% for news in latest_news_list %}
{% if news.image %} {{ news.title }} {% endif %}
{{ news.title }}

{{ news.summary }}

Autor: {{ news.author.username }}
Publicado em: {{ news.pub_date|date:"d/m/Y H:i" }}

Leia mais
{% endfor %} {% else %}

Não há notícias disponíveis no momento.

{% endif %}
{% endblock content %}