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

24 lines
451 B
Python

from Page import Page
from Tags import Div, H2, P, A
class Not_found_page( Page ):
def __init__( self ):
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",
A( "let us know about it.", href = "/about/contact" ),
),
P(
u"Thanks!",
),
class_ = u"box",
),
)