diff options
Diffstat (limited to 'libpathod/app.py')
-rw-r--r-- | libpathod/app.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libpathod/app.py b/libpathod/app.py index e93a898f..0b123e94 100644 --- a/libpathod/app.py +++ b/libpathod/app.py @@ -37,6 +37,12 @@ def render(s, **kwargs): @app.route('/index.html') def index(): return render("index.html", section="main") + j + +@app.route('/about') +@app.route('/about.html') +def about(): + return render("about.html", section="about") @app.route('/docs/pathod') |