witten
/
luminotes
Archived
1
0
Fork 0

Changed /about/contact links to mailto links, and improved CSS of 404 / uh oh pages.

This commit is contained in:
Dan Helfman 2007-08-07 20:29:37 +00:00
parent f2eac9cb1f
commit 2871c18721
3 changed files with 10 additions and 4 deletions

View File

@ -294,3 +294,9 @@ ol li {
-moz-border-radius: 0.5em; -moz-border-radius: 0.5em;
-webkit-border-radius: 0.5em; -webkit-border-radius: 0.5em;
} }
.error_box {
text-align: left;
margin-left: 2em;
margin-right: 2em;
}

View File

@ -13,7 +13,7 @@ class Error_page( Page ):
H2( title ), H2( title ),
P( P(
u"Something went wrong! If you care, please", u"Something went wrong! If you care, please",
A( "let us know about it.", href = "/about/contact" ), A( "let us know about it.", href = "mailto:support@luminotes.com" ),
u"Be sure to include the following information:", u"Be sure to include the following information:",
), ),
Ul( Ul(
@ -31,6 +31,6 @@ class Error_page( Page ):
If Javascript isn't enabled in your browser, please enable it. If Javascript isn't enabled in your browser, please enable it.
""", """,
), ),
class_ = u"box", class_ = u"error_box",
), ),
) )

View File

@ -13,11 +13,11 @@ class Not_found_page( Page ):
H2( title ), H2( title ),
P( P(
u"This is not the page you're looking for. If you care, please", u"This is not the page you're looking for. If you care, please",
A( "let us know about it.", href = "/about/contact" ), A( "let us know about it.", href = "mailto:support@luminotes.com" ),
), ),
P( P(
u"Thanks!", u"Thanks!",
), ),
class_ = u"box", class_ = u"error_box",
), ),
) )