flask render_template example
Example 1: how do you render a template in flask
return render_template("home.html")
Example 2: flask render_template
from flask import render_template
@app.route('/hello/')
@app.route('/hello/<name>')
def hello(name=None):
return render_template('hello.html', name=name)