{% extends "base.html" %} {% block title %}Latest News - DS Task AI News{% endblock %} {% block content %}

Latest News Articles

{% for article in articles %}

{{ article.title }}

{{ article.content[:200] }}...

{{ article.source }} {{ article.published }}
{% if article.categories %}
{% for category in article.categories %} {{ category }} {% endfor %}
{% endif %}
{% endfor %}
{% endblock %}