8shanrahan2 commited on
Commit
52b6d35
Β·
1 Parent(s): 42b5a1a

Initial commit2

Browse files
Files changed (1) hide show
  1. templates/summary.html +15 -0
templates/summary.html CHANGED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head><meta charset="utf-8"><title>GenAI Summary</title></head>
4
+ <body>
5
+ <h2>πŸ“° RSS Digest</h2>
6
+ {% for s in summaries %}
7
+ <div style="margin-bottom:20px;">
8
+ <h3>{{ s.title }}</h3>
9
+ <p>{{ s.summary }}</p>
10
+ <p><a href="{{ s.link }}" target="_blank">πŸ”— Read Full Article</a></p>
11
+ <p><strong>🧠 Relevance:</strong> {{ 'βœ… Useful' if s.useful else '🚫 Not useful' }}</p>
12
+ </div>
13
+ {% endfor %}
14
+ </body>
15
+ </html>