File size: 517 Bytes
8f4b172 11b7146 8f4b172 11b7146 8f4b172 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<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.link }}</h3>
<h3>{{ entry.published|formatdate }}</h3>
<p>{{ entry.summary }}</p>
{% endfor %}
{% endfor %}
</div>
</body>
</html>
|