Skip to content

Commit

Permalink
title set
Browse files Browse the repository at this point in the history
  • Loading branch information
idsoftware committed Apr 2, 2011
1 parent 45be18d commit 339c9e1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/app.py
Expand Up @@ -14,9 +14,10 @@

publisher = Publisher()

TITLE = "whitebrd.me - share your drawings"
class WhiteboardHandler(tornado.web.RequestHandler):
def get(self, channel):
self.render("template.html",channel=channel, title="Websocket test")
self.render("template.html",channel=channel, title=TITLE)

class CreateWhitebrdHandler(tornado.web.RequestHandler):

Expand All @@ -27,7 +28,7 @@ def get(self):

class MainHandler(tornado.web.RequestHandler):
def get(self):
self.render("index.html", title="Whiteboard.me")
self.render("index.html", title=TITLE)



Expand Down

0 comments on commit 339c9e1

Please sign in to comment.