news-api / templates /index.j2
radames's picture
first
8f4b172
raw
history blame
No virus
471 Bytes
<html>
<head>
<title>Item Details</title>
</head>
<body>
<div>
{% for item in data %}
<h1>{{ item.title }}</h1>
{% for entry in item['entries'] %}
<a href="{{ entry.link }}" target="_blank" rel="noopener noreferrer">
<h2>{{ entry.title }}</h2></a>
<h3>{{ entry.published|formatdate }}</h3>
<p>{{ entry.summary }}</p>
{% endfor %}
{% endfor %}
</div>
</body>
</html>