def index(req): tpl = Template() tpl.title = 'This is a page index!' tpl.render('app/templates/index.tpl')
def view(req): tpl = Template() tpl.title = 'My page!' tpl.render('app/templates/view.tpl')