diff options
author | Cédric Bonhomme <kimble.mandel+bitbucket@gmail.com> | 2015-07-03 15:27:36 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel+bitbucket@gmail.com> | 2015-07-03 15:27:36 +0200 |
commit | 7f3c9790fcbe513436cb515b31b4ad81f2d10336 (patch) | |
tree | b621c1e4cbd1698bfcf52695e3cc8b547cfd5e9e /pyaggr3g470r/templates/home.html | |
parent | Minor improvements to the edit feed forms. (diff) | |
parent | fixing bug on reset link for feeds and hidding feed title for eXtraSmall device (diff) | |
download | newspipe-7f3c9790fcbe513436cb515b31b4ad81f2d10336.tar.gz newspipe-7f3c9790fcbe513436cb515b31b4ad81f2d10336.tar.bz2 newspipe-7f3c9790fcbe513436cb515b31b4ad81f2d10336.zip |
Merged in jaesivsm/pyaggr3g470r (pull request #15)
the icon feature
Diffstat (limited to 'pyaggr3g470r/templates/home.html')
-rw-r--r-- | pyaggr3g470r/templates/home.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html index 6d1ca85e..7e272b55 100644 --- a/pyaggr3g470r/templates/home.html +++ b/pyaggr3g470r/templates/home.html @@ -105,7 +105,9 @@ {% if filter_ == 'all' %}</b>{% endif %} {% endif %} </td> - <td><a class="open-article" href="/article/redirect/{{ article.id}}" target="_blank">{{ article.source.title|safe }}</a></td> + <td><a class="open-article" href="/article/redirect/{{ article.id}}" target="_blank"> + {% if article.source.icon %}<img src="{{ article.source.icon }}" width="16px" />{% endif %} + <span class="hidden-xs">{{ article.source.title|safe }}</span></a></td> <td {%if filter_ == 'all' and article.readed == False %}style='font-weight:bold'{% endif %}> <a href="/article/{{ article.id }}">{{ article.title|safe }}</a> </td> |