mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-23 10:15:40 +01:00
IGN:Add spacing to article list in downloaded feeds
This commit is contained in:
parent
68f24caced
commit
a06522c486
1 changed files with 1 additions and 1 deletions
|
|
@ -141,7 +141,7 @@ def __init__(self):
|
|||
</div>
|
||||
<ul>
|
||||
<py:for each="i, article in enumerate(feed.articles)">
|
||||
<li id="${'article_%d'%i}" py:if="getattr(article, 'downloaded', False)">
|
||||
<li id="${'article_%d'%i}" py:if="getattr(article, 'downloaded', False)" style="padding-bottom:0.5em">
|
||||
<a class="article" href="${article.url}">${article.title}</a>
|
||||
<span class="article_date">${article.localtime.strftime(" [%a, %d %b %H:%M]")}</span>
|
||||
<div class="article_decription" py:if="article.summary">
|
||||
|
|
|
|||
Loading…
Reference in a new issue