Archived
1
0
This repository has been archived on 2023-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
luminotes/view/Not_found_page.py
Dan Helfman 3af5af18c5 Changed controller.Users.logout() to not be a JSON method so just hitting the
"/users/logout" URL will log you out and redirect you the front page.

Made front page prettier and better at explaining Luminotes (hopefully). The
front page is no longer a wiki, but is instead a mostly static page.
2008-03-01 00:26:06 +00:00

29 lines
726 B
Python

from Page import Page
from Tags import Div, H2, P, A, Img
class Not_found_page( Page ):
def __init__( self, support_email ):
title = u"404"
header_image = Div(
A( Img( src = u"/static/images/luminotes_title_full.png", width = u"206", height = u"69" ), href = u"/", alt = u"Luminotes personal wiki notebook" ),
class_ = u"error_header",
)
Page.__init__(
self,
title,
header_image,
Div(
H2( title ),
P(
u"This is not the page you're looking for. If you care, please",
A( "let me know about it.", href = "mailto:%s" % support_email ),
),
P(
u"Thanks!",
),
class_ = u"error_box",
),
)