{% extends "enap_designsystem/base.html" %} {% load wagtailcore_tags math_tags %} {% block content %}

Notícias

{{ total_articles }} notícias encontradas

{% for article in articles %}

{{ article.title }}

{% if article|classname == "ENAPNoticiaImportada" %}

(Importada do Joomla)

{{ article.descricao_html|safe }}
{% else %}

(Nova notícia)

{% if article.body %}
{{ article.body|richtext }}
{% endif %} {% endif %}
{% empty %}

Nenhuma notícia encontrada.

{% endfor %}
{% endblock %}