mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
GwR revisions
This commit is contained in:
parent
75f243a470
commit
0ffda66f80
@ -785,9 +785,6 @@ class BasicNewsRecipe(Recipe):
|
|||||||
table.toc {
|
table.toc {
|
||||||
font-size:large;
|
font-size:large;
|
||||||
}
|
}
|
||||||
td.article_count {
|
|
||||||
text-align:right;
|
|
||||||
}
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
templ = templates.TouchscreenFeedTemplate()
|
templ = templates.TouchscreenFeedTemplate()
|
||||||
|
@ -186,7 +186,7 @@ class TouchscreenIndexTemplate(Template):
|
|||||||
if feed:
|
if feed:
|
||||||
tr = TR()
|
tr = TR()
|
||||||
tr.append(TD( CLASS('toc_item'), A(feed.title, href='feed_%d/index.html'%i)))
|
tr.append(TD( CLASS('toc_item'), A(feed.title, href='feed_%d/index.html'%i)))
|
||||||
tr.append(TD( CLASS('article_count'),'%3.3s' % len(feed.articles)))
|
tr.append(TD( '%s' % len(feed.articles), style="text-align:right"))
|
||||||
toc.append(tr)
|
toc.append(tr)
|
||||||
|
|
||||||
div = DIV(
|
div = DIV(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user