Simple game where clues lead you from page to page.
The game is built using flask.
user@computer ~/server $ python run.py
All clues and pages are stored in a Dictionary in the views.py file in the App directory.
#Dictionary for storing pages and clues
pages ={'1': '1', \
'2': '10', \
'11': 'IV',\
'V': 'evif',\
'xis': 'Nice!'}
You can add as many pages as you would like, as long as the page names / URLs are unique.