Skip to content

Instantly share code, notes, and snippets.

@longfin
Created January 15, 2012 16:44
Show Gist options
  • Save longfin/1616379 to your computer and use it in GitHub Desktop.
Save longfin/1616379 to your computer and use it in GitHub Desktop.
Flask rendering
# from http://flask.pocoo.org/docs/quickstart/#rendering-templates
from flask import render_template
@app.route('/hello/')
@app.route('/hello/<name>')
def hello(name=None):
return render_template('hello.html', name=name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment