def locky(): return HTML("locky.html")
def mes(): return HTML("mes.html")
def admin_settings(): return HTML("admin/settings.html")
def all_tweets(page_num): tweets = tweet_mod.TweetModel.get_paginate(50, page_num) return HTML("live/all_tweets.html", tweets=tweets)
def page_not_found(e): return HTML("404.html")
def admin_analysis(): return HTML("admin/analysis.html")
def mes_route(): return HTML("mes.html")
def th3pl4gu3(): return HTML("th3pl4gu3.html")
def fortweet_route(): return HTML("fortweet.html")
def locky_route(): return HTML("locky.html")
def checkpoint_route(): return HTML("checkpoint.html")
def ansible_route(): return HTML("ansible.html")
def index(): return HTML("index.html")
def mesg(): return HTML("mesg.html")
def mesg_route(): return HTML("mesg.html")
def fortweet(): return HTML("fortweet.html")
def prometheus_route(): return HTML("prometheus.html")
def prometheus(): return HTML("prometheus.html")
def index(): return HTML("index.html", age=Utils.get_age())
def admin_dashboard(): return HTML("admin/dashboard.html")
def ansible_automation(): return HTML("ansible.html")
def admin_manage(): return HTML("admin/admins.html", admins=admin_mod.AdminModel.get_all())
def checkpoint_automation(): return HTML("checkpoint.html")
def admin_add_get(): return HTML("admin/admin_add.html")
def live_view(): return HTML("live/index.html")