genai-rss-space / templates /summary.html
8shanrahan2
Initial commit2
52b6d35
raw
history blame contribute delete
447 Bytes
<!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>