Last active
April 4, 2023 01:48
-
-
Save dylanroy/cedd72b48e66d0e48c8f09568bece2b9 to your computer and use it in GitHub Desktop.
Sample Gist Description
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask, render_template | |
app = Flask(__name__) | |
@app.route('/') | |
def hello(): | |
return render_template('template.html') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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