pecha.red/app.py
2020-04-12 19:03:02 +10:00

11 lines
242 B
Python
Executable file

from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def render_home():
return render_template("home.html", big_header = True)
@app.route("/contact")
def render_contact():
return render_template("contact.html")