diff options
author | Pjotr Prins | 2020-08-22 11:04:56 +0100 |
---|---|---|
committer | Pjotr Prins | 2020-08-22 11:04:56 +0100 |
commit | cab2f4ca70c08d9f44442ba01bdfa5639017084b (patch) | |
tree | c4d52887fc9b6314d37e45f92c90235a7d9c55c3 /bh20simplewebuploader/main.py | |
parent | ed0bef1505c50c49479d794bbac6ad2fd2a99db1 (diff) | |
download | bh20-seq-resource-cab2f4ca70c08d9f44442ba01bdfa5639017084b.tar.gz bh20-seq-resource-cab2f4ca70c08d9f44442ba01bdfa5639017084b.tar.lz bh20-seq-resource-cab2f4ca70c08d9f44442ba01bdfa5639017084b.zip |
Repositioning content
Diffstat (limited to 'bh20simplewebuploader/main.py')
-rw-r--r-- | bh20simplewebuploader/main.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bh20simplewebuploader/main.py b/bh20simplewebuploader/main.py index 62ec5cd..3dbe49a 100644 --- a/bh20simplewebuploader/main.py +++ b/bh20simplewebuploader/main.py @@ -658,6 +658,11 @@ def about_page(): buf = get_html_body('doc/web/about.html','https://github.com/arvados/bh20-seq-resource/blob/master/doc/web/about.org') return render_template('about.html',menu='ABOUT',embed=buf) +@app.route('/contact') +def contact_page(): + buf = get_html_body('doc/web/contact.html','https://github.com/arvados/bh20-seq-resource/blob/master/doc/web/contact.org') + return render_template('about.html',menu='CONTACT',embed=buf) + ## Dynamic API functions starting here ## This is quick and dirty for now, just to get something out and demonstrate the queries ## Feel free to rename the functions/endpoints, feel free to process result so we get nicer JSON |