Created
May 21, 2020 14:35
-
-
Save harilee1325/041ee9c41935ce8597970c03dc13291e to your computer and use it in GitHub Desktop.
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 album(): | |
return render_template("album.html") | |
@app.route("/magazine") | |
def magazine(): | |
return render_template("magazine.html") | |
@app.route("/blog") | |
def blog(): | |
return render_template("blog.html") | |
if __name__ == "__main__": | |
app.run(debug=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment