pecha.red/app.py

12 lines
242 B
Python
Raw Normal View History

2020-04-12 08:20:44 +00:00
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def render_home():
2020-04-12 09:03:02 +00:00
return render_template("home.html", big_header = True)
@app.route("/contact")
def render_contact():
return render_template("contact.html")