Fixed page source layout for stylesheet links line up.

svn: r15056
This commit is contained in:
Rob G. Healey 2010-04-07 23:55:28 +00:00
parent aaa5f81719
commit 78dca2345a

View File

@ -962,9 +962,9 @@ class BasePage(object):
# create stylesheet and favicon links # create stylesheet and favicon links
links = Html("link", href = url4, type = "image/x-icon", rel = "shortcut icon") + ( links = Html("link", href = url4, type = "image/x-icon", rel = "shortcut icon") + (
Html("link", href = url1, type = "text/css", media = "screen", rel = "stylesheet"), Html("link", href = url1, type = "text/css", media = "screen", rel = "stylesheet", indent = False),
Html("link", href = url2, type = "text/css", media = "screen", rel = "stylesheet"), Html("link", href = url2, type = "text/css", media = "screen", rel = "stylesheet", indent = False),
Html("link", href = url3, type = "text/css", media = 'print', rel = "stylesheet") Html("link", href = url3, type = "text/css", media = 'print', rel = "stylesheet", indent = False)
) )
# add additional meta and link tags # add additional meta and link tags