def about(): return render_templates("about.html")
def home(): return render_templates("home.html")
def foo(): return render_templates('home.html', 'nesto' =os.getcwd())
def main(): return render_templates('index.html')
def main(): return(flask.render_templates('main.html')) if __name__ == '__main__':
def home(): data = db.collection.find_one() return render_templates('index.html',data=data)
def Services(): return render_templates('services.html')
def dojos(): return render_templates("dojo.html") name = request.form('name') email = requst.form('email') return redirect('/')
def Home(): return render_templates('index.html')
def Blogs(): return render_templates('blogs.html')
def index(): headline = "Hello world" return render_templates("index.html", headline=headline)
def bye(): headline = "Bye!" return render_templates("index.html", headline=headline)
def index(): return render_templates("index.html")
def linux(): return render_templates('linux.html')
def Projects(): return render_templates('projects.html')
def index(): return render_templates('index.html')
def ninjas(): return render_templates("ninjas.html")