Spaces:
Sleeping
Sleeping
File size: 447 Bytes
52b6d35 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<!DOCTYPE html>
<html>
<head><meta charset="utf-8"><title>GenAI Summary</title></head>
<body>
<h2>π° RSS Digest</h2>
{% for s in summaries %}
<div style="margin-bottom:20px;">
<h3>{{ s.title }}</h3>
<p>{{ s.summary }}</p>
<p><a href="{{ s.link }}" target="_blank">π Read Full Article</a></p>
<p><strong>π§ Relevance:</strong> {{ 'β
Useful' if s.useful else 'π« Not useful' }}</p>
</div>
{% endfor %}
</body>
</html>
|