{% extends "layout.html" %} {% block title %}News{% endblock %} {% block content %}
News

{% for article_row in headlines['articles'] | batch(3)%}
{% for article in article_row %}
{{article['title'] | truncate(20)}}

{{article['title'] | truncate(150) if article['title'] != None else 'Title Unknown' }}

{{ article['description'] | truncate(300, True) if article['description'] != None else 'Description Not available for the headlines' }}

Read More
{% endfor %}
{% endfor %}
{% endblock %}