Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save harilee1325/041ee9c41935ce8597970c03dc13291e to your computer and use it in GitHub Desktop.
Save harilee1325/041ee9c41935ce8597970c03dc13291e to your computer and use it in GitHub Desktop.
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