4
0
mirror of https://github.com/cwinfo/yggdrasil-map synced 2025-08-14 17:08:09 +00:00

About page.

This commit is contained in:
Vanhala Antti
2014-05-14 01:36:55 +03:00
parent d62a3289e7
commit 7dddb76770
4 changed files with 59 additions and 4 deletions

View File

@@ -12,7 +12,11 @@ def add_ip():
@app.route('/')
@app.route('/network')
def page_network():
return render_template('network.html')
return render_template('network.html', page='network')
@app.route('/about')
def page_about():
return render_template('about.html', page='about')
if __name__ == '__main__':