def index():
return dict(message="Hello, World!")
def about():
return dict()
def contact():
return dict()
<html>
<body>
<h1>{{=message}}</h1>
</body>
</html>
routes_in = (
('/', '/default/index'),
('/about', '/default/about'),
('/contact', '/default/contact'),
)