From 1513cd97911fdf4500ae17f7e8ee6d90ac4bac84 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Fri, 3 Jul 2015 11:49:28 +0200 Subject: the icon feature * icon of feeds is now an url retrieved from the feed or the site link * the icon is displayed in the home page making it visually easier to read * the http crawler is in charge of keeping it up to date --- pyaggr3g470r/templates/home.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'pyaggr3g470r/templates/home.html') diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html index 6d1ca85e..5c961888 100644 --- a/pyaggr3g470r/templates/home.html +++ b/pyaggr3g470r/templates/home.html @@ -105,7 +105,9 @@ {% if filter_ == 'all' %}{% endif %} {% endif %} - {{ article.source.title|safe }} + + {% if article.source.icon %}{% endif %} + {{ article.source.title|safe }} {{ article.title|safe }} -- cgit From eba5fc68f61b93f5fc33301e95e0b841626a96c0 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Fri, 3 Jul 2015 15:00:33 +0200 Subject: fixing bug on reset link for feeds and hidding feed title for eXtraSmall device --- pyaggr3g470r/templates/home.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pyaggr3g470r/templates/home.html') diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html index 5c961888..7e272b55 100644 --- a/pyaggr3g470r/templates/home.html +++ b/pyaggr3g470r/templates/home.html @@ -107,7 +107,7 @@ {% if article.source.icon %}{% endif %} - {{ article.source.title|safe }} + {{ article.title|safe }} -- cgit