# Downloads
(r"/downloads", downloads.IndexHandler),
- (r"/downloads/cloud", StaticHandler, { "template" : "../downloads/cloud.html" }),
+ (r"/downloads/cloud", StaticHandler, { "template" : "downloads/cloud.html" }),
(r"/downloads/mirrors", downloads.MirrorsHandler),
(r"/downloads/thank-you", downloads.ThankYouHandler),
(r"/downloads/([0-9a-z\-\.]+)", downloads.ReleaseHandler),
# Projects
(r"/projects/location", location.IndexHandler),
- (r"/projects/location/download", StaticHandler, { "template" : "../location/download.html" }),
- (r"/projects/location/how\-to\-use", StaticHandler, { "template" : "../location/how-to-use.html" }),
+ (r"/projects/location/download", StaticHandler, { "template" : "location/download.html" }),
+ (r"/projects/location/how\-to\-use", StaticHandler, { "template" : "location/how-to-use.html" }),
(r"/projects/location/lookup/(.+)", location.LookupHandler),
# Single-Sign-On for Discourse
(r"/voip", voip.IndexHandler),
# Static Pages
- (r"/about", StaticHandler, { "template" : "about.html" }),
- (r"/legal", StaticHandler, { "template" : "legal.html" }),
- (r"/help", StaticHandler, { "template" : "help.html" }),
- (r"/sitemap", StaticHandler, { "template" : "sitemap.html" }),
+ (r"/about", StaticHandler, { "template" : "static/about.html" }),
+ (r"/legal", StaticHandler, { "template" : "static/legal.html" }),
+ (r"/help", StaticHandler, { "template" : "static/help.html" }),
+ (r"/sitemap", StaticHandler, { "template" : "static/sitemap.html" }),
# API
(r"/api/check/email", auth.APICheckEmail),