コード例 #1
0
def about():
    return render_templates("about.html")
コード例 #2
0
def home():
    return render_templates("home.html")
コード例 #3
0
ファイル: flask1.py プロジェクト: milemik/my_first_flask_api
def foo():
    return render_templates('home.html', 'nesto' =os.getcwd())
コード例 #4
0
def main():
    return render_templates('index.html')
コード例 #5
0
def main():
    return(flask.render_templates('main.html'))
	
	if __name__ == '__main__':
コード例 #6
0
def home():
    data = db.collection.find_one()
    return render_templates('index.html',data=data)
コード例 #7
0
def Services():
    return render_templates('services.html')
コード例 #8
0
def dojos():
    return render_templates("dojo.html")
    name = request.form('name')
    email = requst.form('email')
    return redirect('/')
コード例 #9
0
def Home():
    return render_templates('index.html')
コード例 #10
0
def Blogs():
    return render_templates('blogs.html')
コード例 #11
0
def index():
    headline = "Hello world"
    return render_templates("index.html", headline=headline)
コード例 #12
0
def bye():
    headline = "Bye!"
    return render_templates("index.html", headline=headline)
コード例 #13
0
def index():
    return render_templates("index.html")
コード例 #14
0
def linux():
	return render_templates('linux.html')
コード例 #15
0
def Projects():
    return render_templates('projects.html')
コード例 #16
0
def index():
    return render_templates('index.html')
コード例 #17
0
def ninjas():
    return render_templates("ninjas.html")