def catch_users(username):
    return app.send_static_file('index.html')
def catch_signup():
    return app.send_static_file('index.html')
def catch_thread(id):
    return app.send_static_file('index.html')
def catch_forum():
    return app.send_static_file('index.html')
def catch_login():
    return app.send_static_file('index.html')
def catch_society():
    return app.send_static_file('index.html')
def catch_opportunity():
    return app.send_static_file('index.html')
def catch_announcement():
    return app.send_static_file('index.html')
def catch_faculty():
    return app.send_static_file('index.html')
def catch_about():
    return app.send_static_file('index.html')