diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-08-10 00:45:40 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-08-10 00:45:40 +0200 |
commit | a8a003a636ee34505b127f83e534336a13bc505a (patch) | |
tree | f271b2b3534338b84d0d6bf41c8e70fb45a65460 /pyaggr3g470r/templates/home.html | |
parent | When displaying all articles (unread + read) titles of unread articles are em... (diff) | |
download | newspipe-a8a003a636ee34505b127f83e534336a13bc505a.tar.gz newspipe-a8a003a636ee34505b127f83e534336a13bc505a.tar.bz2 newspipe-a8a003a636ee34505b127f83e534336a13bc505a.zip |
Bold/Unbold the title of the article with jQuery.
Diffstat (limited to 'pyaggr3g470r/templates/home.html')
-rw-r--r-- | pyaggr3g470r/templates/home.html | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html index 551b2d72..708e491e 100644 --- a/pyaggr3g470r/templates/home.html +++ b/pyaggr3g470r/templates/home.html @@ -95,10 +95,8 @@ {% for article in articles %} <tr data-article="{{ article.id }}" data-feed="{{ article.feed_id }}"> <td><a href="/article/redirect/{{ article.id}}" target="_blank">{{ article.source.title|safe }}</a></td> - <td> - {% if filter_ == 'all' and article.readed == False %}<b>{% endif %} + <td {%if filter_ == 'all' and article.readed == False %}style='font-weight:bold'{% endif %}> <a href="/article/{{ article.id }}">{{ article.title|safe }}</a> - {% if filter_ == 'all' and article.readed == False %}</b>{% endif %} </td> <td class="date">{{ article.date|datetime }}</a></td> <td> |