Compare commits

..
6 Commits
Author SHA1 Message Date
retoor 7ae80ab600 Update. 2025-10-06 09:35:13 +02:00
retoor 061d71ac1e Update. 2025-10-06 09:35:02 +02:00
retoor 8c242d1ff9 Update. 2025-10-06 08:05:47 +02:00
retoor 6c50385a06 Update. 2025-10-06 08:04:14 +02:00
retoor 30c3821d98 Update. 2025-10-06 07:48:53 +02:00
retoor 018b4e431a Initial commit. 2025-10-02 21:17:36 +02:00
+1 -3
View File
@@ -164,7 +164,7 @@
<h2 class="article-title">
<a href="{{ article.link }}" target="_blank">{{ article.title }}</a>
</h2>
<input type="hidden" name="sentiment" value="{{ article.sentiment }}">
<div class="article-meta">
<span class="article-source">{{ article.feed_name }}</span>
{% if article.author %}
@@ -179,8 +179,6 @@
{% set clean_text = full_content|striptags %}
{% set display_text = clean_text[:500] if article.content else clean_text[:300] %}
{{ display_text }}{% if clean_text|length > (500 if article.content else 300) %}...{% endif %}
<div class="article-sentiment" style="display: none">Sentiment: {{ article.sentiment }}</div>
</div>
{% set words = full_content.split() %}