From 9fe56e9507f189d4e85c1a17fa0d77d39ef92b5f Mon Sep 17 00:00:00 2001 From: crunk Date: Thu, 8 Jun 2023 23:11:24 +0200 Subject: [PATCH] quick and dirty way of adding ids and class per feed --- templates/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/index.html b/templates/index.html index 7f90565..b9d8d2b 100644 --- a/templates/index.html +++ b/templates/index.html @@ -2,12 +2,12 @@ {% block main %}
{% for column in columns %} -
+

{{ column.title }}

{% for feedtitle, text in column.entries.items() %} -
+

{{ feedtitle }}

- {{ text[0]|safe }} +
{{ text[0]|safe }}
{% endfor%}