witten
/
luminotes
Archived
1
0
Fork 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

25 lines
509 B
Python
Raw Normal View History

from Page import Page
from Tags import Div, H2, P, A
class Not_found_page( Page ):
def __init__( self, support_email ):
title = u"404"
Page.__init__(
self,
title,
Div(
H2( title ),
P(
u"This is not the page you're looking for. If you care, please",
2007-08-29 00:24:26 +00:00
A( "let me know about it.", href = "mailto:%s" % support_email ),
),
P(
u"Thanks!",
),
class_ = u"error_box",
),
include_js = False,
)