link to js page from appengine frontpage

This commit is contained in:
Evan Martin 2010-11-04 23:06:43 -07:00
parent 4ac587df07
commit cdd3ce3410
1 changed files with 3 additions and 1 deletions

View File

@ -97,7 +97,9 @@ class HelloHandler(webapp.RequestHandler):
"""Present ourselves to the world."""
def get(self):
self.response.out.write('Hello! This is an AppEngine Camlistore blob server.')
self.response.out.write('Hello! This is an AppEngine Camlistore '
'blob server.<p>')
self.response.out.write('<a href=js/index.html>js frontend</a>')
class ListHandler(webapp.RequestHandler):