pecha.red/app.py

12 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")