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/Close_page.py

24 lines
572 B
Python

from Tags import Html, Head, Link, Body, Div, P
from config.Version import VERSION
class Close_page( Html ):
def __init__( self, script = None ):
Html.__init__(
self,
Head(
Link( rel = u"stylesheet", type = u"text/css", href = u"/static/css/style.css?%s" % VERSION ),
),
Body(
Div(
P(
u"Luminotes Desktop has been shut down."
),
P(
u"To start Luminotes again, simply launch it from your Start Menu."
),
id = u"center_area",
),
),
)