witten
/
luminotes
Archived
1
0
Fork 0

Hard-coding luminotes_title.png image dimensions to improve the way the page looks when it's loading without a cache.

This commit is contained in:
Dan Helfman 2008-02-07 19:06:34 +00:00
parent 1398e89f96
commit 43f098cda0
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ from Tags import Div, H2, P, A, Ul, Li, Strong, Noscript, Img
class Error_page( Page ):
def __init__( self, support_email, message = None ):
header_image = Div(
A( Img( src = "/static/images/luminotes_title.png" ), href = "/", title = "Luminotes personal wiki notebook" ),
A( Img( src = u"/static/images/luminotes_title.png", width = u"206", height = u"69" ), href = u"/", title = u"Luminotes personal wiki notebook" ),
class_ = u"error_header",
)

View File

@ -125,7 +125,7 @@ class Main_page( Page ):
id = u"search_and_user_area",
),
Div(
A( Img( src = "/static/images/luminotes_title.png" ), href = "/", title = "Luminotes personal wiki notebook" ),
A( Img( src = u"/static/images/luminotes_title.png", width = u"206", height = u"69" ), href = u"/", title = u"Luminotes personal wiki notebook" ),
id = u"title_area",
),
id = u"top_area",