Spaces:
Sleeping
Sleeping
8shanrahan2
commited on
Commit
Β·
52b6d35
1
Parent(s):
42b5a1a
Initial commit2
Browse files- 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>
|