# # the main front page # import pagebase import util import books def showpage(web, path, query): #util.needelts(query, ['code']) code = 'ODES' book = books.getbook(code) pagebase.headsection(web) web.write(''' ''') web.write('''

You are holding a Very Important Book!

Vicky has registered this book with VeryImportantBooks.co.uk because she thinks that more people should read it. Vicky would like you to:

1. Read the book.

2. Go to veryimportantbooks.co.uk where you can find out why Vicky thinks this book is so important, see who else has read it, or share your thoughts about it. Just go to the web site and enter the book code: %(code)s

3. Pass the book on to someone else who might benefit from it. Please don't let this book sit on your shelf or under your bed: if you are not going to read it, be honest with yourself and pass it on!

''' % book.substitutions()) web.write("") #pagebase.footer(web)