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>