{% extends "template.html" %} {% block title %}News{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}
{% for editions in client.editions %}
{% endfor %}
{% for languages in client.languages %}
{% endfor %}
{% for topics in client.topics %}
{% endfor %}
{% if country %} {% endif %} {% if language %} {% endif %} {% if topic %} {% endif %}
{% set articles = client.get_news() %} {% if articles %}
    {% for news in articles %}
  1. {{news['title']}}

  2. {% endfor %}
{% endif %}
{% endblock %}