Skip to content

Instantly share code, notes, and snippets.

@dylanroy
Last active April 4, 2023 01:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dylanroy/cedd72b48e66d0e48c8f09568bece2b9 to your computer and use it in GitHub Desktop.
Save dylanroy/cedd72b48e66d0e48c8f09568bece2b9 to your computer and use it in GitHub Desktop.
Sample Gist Description
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def hello():
return render_template('template.html')
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def hello2():
return render_template('template2.html')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment