Skip to content

Commit

Permalink
Added link to another page
Browse files Browse the repository at this point in the history
  • Loading branch information
miamibc committed Jun 12, 2021
1 parent ac541c9 commit f677bf0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion server.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@
class RootController(TGController):
@expose()
def index(self):
return 'Show what you can. Learn what you don\'t'
return 'Show what you can. Learn what you don\'t <a href="huj">Another page</a>'

@expose()
def huj(self):
return 'Show you huj. Learn what you don\'t'

from tg import MinimalApplicationConfigurator

config = MinimalApplicationConfigurator()
Expand Down

0 comments on commit f677bf0

Please sign in to comment.