from Product_page import Product_page from Tags import Div, H1, Img, A, Ol, Li, P, Span, I, Br class Tour_page( Product_page ): def __init__( self, user, notebooks, first_notebook, login_url, logout_url, rate_plan, groups ): Product_page.__init__( self, user, first_notebook, login_url, logout_url, u"tour", # note title Div( H1( Img( src = u"/static/images/tour.png", width = u"277", height = u"47", alt = u"Luminotes tour", ), ), Div( Img( src = u"/static/images/tour_card1.png", width = u"400", height = u"243", class_ = u"tour_card" ), P( u"Using index cards to take notes is really easy. You just write a title at the top and then jot down some notes.", class_ = u"tour_text", ), ), Div( Img( src = u"/static/images/tour_card2.png", width = u"400", height = u"243", class_ = u"tour_card" ), P( u"And if you make one index card per subject, you can keep your notes organized.", class_ = u"tour_text", ), P( u""" But when your stack of cards grows larger than a few dozen, it becomes difficult to find the notes you're looking for. """, class_ = u"tour_text", ), ), Div( Img( src = u"/static/images/tour_card3.png", width = u"430", height = u"366", class_ = u"tour_card" ), P( u""" If only there was something as simple for taking notes as index cards, but fast, searchable, and with some way to make links between your notes! """, class_ = u"tour_text", ), P( u"Introducing Luminotes...", class_ = u"tour_text", ), ), Div( Img( src = u"/static/images/tour_screenshot1.png", width = u"725", height = u"560", class_ = u"tour_screenshot" ), Div( Div( Ol( Li( u"Format your wiki with this convenient toolbar" ), Li( u"Just start typing — everything is saved automatically" ), Li( u"Search through your entire wiki" ), Li( u"Make as many notebooks as you want" ), class_ = u"tour_list", ), class_ = u"tour_text", ), ), ), Div( Img( src = u"/static/images/tour_screenshot2.png", width = u"725", height = u"558", class_ = u"tour_screenshot" ), Div( Div( Ol( Li( u"Connect your thoughts with links between notes" ), Li( u"Track past revisions and make updates without worry" ), Li( u"Download your complete wiki as a web page or spreadsheet" ), Li( u"Attach files to your wiki and download them anytime" ), class_ = u"tour_list", ), class_ = u"tour_text", ), ), ), Div( Img( src = u"/static/images/tour_screenshot3.png", width = u"725", height = u"558", class_ = u"tour_screenshot" ), Div( Div( Ol( Li( u"Share your wiki with friends and colleagues" ), Li( u"Send invites simply by entering email addresses" ), Li( u"Control how much access each person gets" ), Li( u"Revoke access at any time" ), class_ = u"tour_list", ), class_ = u"tour_text", ), ), class_ = u"tour_screenshot_wrapper", ), Div( Div( u"You can use Luminotes online and collaborate with others, or download Luminotes Desktop and take notes locally on your own computer!", class_ = u"tour_text", ), ), class_ = u"tour_area" ), Div( P( Span( u"Like what you've seen so far?", class_ = u"hook_action_question" ), Br(), A( u"Try the demo", href = u"/users/demo", class_ = u"hook_action" ), u", ", A( u"Download", href = u"/download", class_ = u"hook_action" ), u", ", Span( u" or ", class_ = u"hook_action_or" ), A( u"Sign up", href = u"/pricing", class_ = u"hook_action" ), class_ = u"hook_action_area", separator = u"", ), class_ = u"center_area", ), )